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