depot/third_party/nixpkgs/pkgs/development/python-modules/asdf/default.nix
Default email bb584b27e9 Project import generated by Copybara.
GitOrigin-RevId: 5181d5945eda382ff6a9ca3e072ed6ea9b547fee
2022-04-15 03:41:22 +02:00

71 lines
1.2 KiB
Nix

{ lib
, asdf-standard
, asdf-transform-schemas
, astropy
, buildPythonPackage
, fetchPypi
, importlib-resources
, jmespath
, jsonschema
, lz4
, numpy
, packaging
, pytest-astropy
, pytestCheckHook
, pythonOlder
, pyyaml
, semantic-version
, setuptools-scm
}:
buildPythonPackage rec {
pname = "asdf";
version = "2.11.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-FEWXGSkneduhO9+YlzrZvpJHUsI7TeagVLwBdMEIRvw=";
};
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
asdf-standard
asdf-transform-schemas
jmespath
jsonschema
numpy
packaging
pyyaml
semantic-version
] ++ lib.optionals (pythonOlder "3.9") [
importlib-resources
];
checkInputs = [
astropy
lz4
pytest-astropy
pytestCheckHook
];
preCheck = ''
export PY_IGNORE_IMPORTMISMATCH=1
'';
pythonImportsCheck = [
"asdf"
];
meta = with lib; {
description = "Python tools to handle ASDF files";
homepage = "https://github.com/asdf-format/asdf";
license = licenses.bsd3;
maintainers = with maintainers; [ costrouc ];
};
}