34 lines
746 B
Nix
34 lines
746 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools-scm,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "asdf-standard";
|
|
version = "1.3.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "asdf_standard";
|
|
inherit version;
|
|
hash = "sha256-WViWHzmd6tIACnhyTaN/Wu6wSZp4C72a5Pw+y+Pq7WQ=";
|
|
};
|
|
|
|
build-system = [ setuptools-scm ];
|
|
|
|
# Circular dependency on asdf
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "asdf_standard" ];
|
|
|
|
meta = with lib; {
|
|
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 = licenses.bsd3;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|