Fabian Affolter 70c470b0f4 python313Packages.asdf-standard: refactor
- add changelog to meta
2025-06-28 21:57:22 +02:00

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 ];
};
}