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