pythonPackages.asdf: init at 2.3.3

This commit is contained in:
Chris Ostrouchov 2019-07-15 12:17:51 -04:00 committed by Frederik Rietdijk
parent bd82932de3
commit 504134a4a0
2 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,47 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytest-astropy
, semantic-version
, pyyaml
, jsonschema
, six
, numpy
, isPy27
, astropy
}:
buildPythonPackage rec {
pname = "asdf";
version = "2.3.3";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "d02e936a83abd206e7bc65050d94e8848da648344dbec9e49dddc2bdc3bd6870";
};
checkInputs = [
pytest-astropy
astropy
];
propagatedBuildInputs = [
semantic-version
pyyaml
jsonschema
six
numpy
];
checkPhase = ''
pytest
'';
meta = with lib; {
description = "Python tools to handle ASDF files";
homepage = https://github.com/spacetelescope/asdf;
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}

View file

@ -175,6 +175,8 @@ in {
asana = callPackage ../development/python-modules/asana { };
asdf = callPackage ../development/python-modules/asdf { };
asciimatics = callPackage ../development/python-modules/asciimatics { };
asciitree = callPackage ../development/python-modules/asciitree { };