silx: 2.1.1 -> 2.1.2 (#361612)
[NixPkgs.git] / pkgs / development / python-modules / asdf-standard / default.nix
blob15c8191a84653ccb827131dbcb13d77dce19dbad
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   importlib-resources,
6   pythonOlder,
7   setuptools-scm,
8 }:
10 buildPythonPackage rec {
11   pname = "asdf-standard";
12   version = "1.1.1";
13   format = "pyproject";
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     pname = "asdf_standard";
19     inherit version;
20     hash = "sha256-AVNbwrFb/AnsimLUmZ+c8y3EnccWYMhCVkAij9h3YQI=";
21   };
23   nativeBuildInputs = [ setuptools-scm ];
25   propagatedBuildInputs = lib.optionals (pythonOlder "3.9") [ importlib-resources ];
27   # Circular dependency on asdf
28   doCheck = false;
30   pythonImportsCheck = [ "asdf_standard" ];
32   meta = with lib; {
33     description = "Standards document describing ASDF";
34     homepage = "https://github.com/asdf-format/asdf-standard";
35     license = licenses.bsd3;
36     maintainers = with maintainers; [ fab ];
37   };