nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python313Packages.asdf-standard: refactor

- add changelog to meta

+3 -8
+3 -8
pkgs/development/python-modules/asdf-standard/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchPypi, 5 - importlib-resources, 6 - pythonOlder, 7 5 setuptools-scm, 8 6 }: 9 7 10 8 buildPythonPackage rec { 11 9 pname = "asdf-standard"; 12 10 version = "1.3.0"; 13 - format = "pyproject"; 14 - 15 - disabled = pythonOlder "3.7"; 11 + pyproject = true; 16 12 17 13 src = fetchPypi { 18 14 pname = "asdf_standard"; ··· 16 20 hash = "sha256-WViWHzmd6tIACnhyTaN/Wu6wSZp4C72a5Pw+y+Pq7WQ="; 17 21 }; 18 22 19 - nativeBuildInputs = [ setuptools-scm ]; 20 - 21 - propagatedBuildInputs = lib.optionals (pythonOlder "3.9") [ importlib-resources ]; 23 + build-system = [ setuptools-scm ]; 22 24 23 25 # Circular dependency on asdf 24 26 doCheck = false; ··· 26 32 meta = with lib; { 27 33 description = "Standards document describing ASDF"; 28 34 homepage = "https://github.com/asdf-format/asdf-standard"; 35 + changelog = "https://github.com/asdf-format/asdf-standard/releases/tag/${version}"; 29 36 license = licenses.bsd3; 30 37 maintainers = with maintainers; [ fab ]; 31 38 };