pythonPackages.aspy-yaml: init at 1.1.1

This commit is contained in:
Boris Babic 2018-07-31 01:08:58 +02:00
parent eed74d16a1
commit 339f78957e
2 changed files with 24 additions and 0 deletions

View 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;
};
}

View file

@ -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 { };