mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
pythonPackages.aspy-yaml: init at 1.1.1
This commit is contained in:
parent
eed74d16a1
commit
339f78957e
2 changed files with 24 additions and 0 deletions
22
pkgs/development/python-modules/aspy.yaml/default.nix
Normal file
22
pkgs/development/python-modules/aspy.yaml/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, pyyaml }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aspy.yaml";
|
||||
version = "1.1.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1ajb97kn044ximkzq2090h4yblrhw77540pwiw345cp7mwzy4xqa";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pyyaml ];
|
||||
|
||||
# Tests not included in PyPI tarball
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A few extensions to pyyaml";
|
||||
homepage = https://github.com/asottile/aspy.yaml;
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
|
@ -186,6 +186,8 @@ in {
|
|||
|
||||
asn1crypto = callPackage ../development/python-modules/asn1crypto { };
|
||||
|
||||
aspy-yaml = callPackage ../development/python-modules/aspy.yaml { };
|
||||
|
||||
astral = callPackage ../development/python-modules/astral { };
|
||||
|
||||
astropy = callPackage ../development/python-modules/astropy { };
|
||||
|
|
Loading…
Reference in a new issue