1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools-scm,
6}:
7
8buildPythonPackage rec {
9 pname = "asdf-standard";
10 version = "1.4.0";
11 pyproject = true;
12
13 src = fetchPypi {
14 pname = "asdf_standard";
15 inherit version;
16 hash = "sha256-DF8SHQ24fLd4DWGgh/OSxRBM4ggBbPsqEwyc6pEs/dw=";
17 };
18
19 build-system = [ setuptools-scm ];
20
21 # Circular dependency on asdf
22 doCheck = false;
23
24 pythonImportsCheck = [ "asdf_standard" ];
25
26 meta = with lib; {
27 description = "Standards document describing ASDF";
28 homepage = "https://github.com/asdf-format/asdf-standard";
29 changelog = "https://github.com/asdf-format/asdf-standard/releases/tag/${version}";
30 license = licenses.bsd3;
31 maintainers = with maintainers; [ fab ];
32 };
33}