nixpkgs/pkgs/development/python-modules/asdf/default.nix

53 lines
872 B
Nix
Raw Normal View History

2019-07-15 17:17:51 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest-astropy
, semantic-version
, pyyaml
, jsonschema
, six
, numpy
, isPy27
, astropy
, setuptools_scm
, setuptools
2019-07-15 17:17:51 +01:00
}:
buildPythonPackage rec {
pname = "asdf";
2020-08-29 12:41:47 +01:00
version = "2.7.1";
2019-07-15 17:17:51 +01:00
disabled = isPy27;
2020-12-28 18:33:33 +00:00
format = "pyproject";
2019-07-15 17:17:51 +01:00
src = fetchPypi {
inherit pname version;
2020-08-29 12:41:47 +01:00
sha256 = "4ba2e31cb24b974a10dfae3edee23db2e6bea2d00608604d062366aa3af6e81a";
2019-07-15 17:17:51 +01:00
};
checkInputs = [
pytest-astropy
astropy
];
propagatedBuildInputs = [
semantic-version
pyyaml
jsonschema
six
numpy
setuptools_scm
setuptools
2019-07-15 17:17:51 +01:00
];
checkPhase = ''
2020-12-28 18:33:33 +00:00
PY_IGNORE_IMPORTMISMATCH=1 pytest
2019-07-15 17:17:51 +01:00
'';
meta = with lib; {
description = "Python tools to handle ASDF files";
2020-03-03 02:26:35 +00:00
homepage = "https://github.com/spacetelescope/asdf";
2019-07-15 17:17:51 +01:00
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}