python312Packages.parts: refactor

- add changelog to meta

authored by Fabian Affolter and committed by GitHub 6fa588ba 2b8a8b6c

+4 -10
+4 -10
pkgs/development/python-modules/parts/default.nix
··· 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 - pythonOlder, 6 setuptools, 7 - wheel, 8 }: 9 10 buildPythonPackage rec { 11 pname = "parts"; 12 version = "3.0.0"; 13 - format = "pyproject"; 14 - 15 - disabled = pythonOlder "3.7"; 16 17 src = fetchPypi { 18 inherit pname version; 19 hash = "sha256-MuZDe/j04sE8tX6658zYwbebwGYp7r3wVBbumoBJ2WQ="; 20 }; 21 22 - nativeBuildInputs = [ 23 - setuptools 24 - wheel 25 - ]; 26 27 # Project has no tests 28 doCheck = false; ··· 32 meta = with lib; { 33 description = "Library for common list functions related to partitioning lists"; 34 homepage = "https://github.com/lapets/parts"; 35 - license = with licenses; [ mit ]; 36 maintainers = with maintainers; [ fab ]; 37 }; 38 }
··· 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools, 6 }: 7 8 buildPythonPackage rec { 9 pname = "parts"; 10 version = "3.0.0"; 11 + pyproject = true; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-MuZDe/j04sE8tX6658zYwbebwGYp7r3wVBbumoBJ2WQ="; 16 }; 17 18 + build-system = [ setuptools ]; 19 20 # Project has no tests 21 doCheck = false; ··· 25 meta = with lib; { 26 description = "Library for common list functions related to partitioning lists"; 27 homepage = "https://github.com/lapets/parts"; 28 + changelog = "https://github.com/lapets/parts/releases/tag/${version}"; 29 + license = licenses.mit; 30 maintainers = with maintainers; [ fab ]; 31 }; 32 }