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

58 lines
987 B
Nix
Raw Normal View History

2019-07-15 16:17:51 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest-astropy
, semantic-version
, pyyaml
, jsonschema
, six
, numpy
, isPy27
, astropy
, setuptools_scm
, setuptools
2019-07-15 16:17:51 +00:00
}:
buildPythonPackage rec {
pname = "asdf";
version = "2.4.2";
2019-07-15 16:17:51 +00:00
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "1wlgx8469wwsczc2gjka9k1a03yzird67zg3va0kg8y6j1qmbwvg";
2019-07-15 16:17:51 +00:00
};
postPatch = ''
substituteInPlace setup.cfg \
--replace "semantic_version>=2.3.1,<=2.6.0" "semantic_version>=2.3.1" \
--replace "doctest_plus = enabled" ""
'';
2019-07-15 16:17:51 +00:00
checkInputs = [
pytest-astropy
astropy
];
propagatedBuildInputs = [
semantic-version
pyyaml
jsonschema
six
numpy
setuptools_scm
setuptools
2019-07-15 16:17:51 +00:00
];
checkPhase = ''
pytest
'';
meta = with lib; {
description = "Python tools to handle ASDF files";
homepage = https://github.com/spacetelescope/asdf;
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}