python312Packages.parts: 2.1.0 -> 3.0.0 (#403207)

This commit is contained in:
Nick Cao
2025-05-01 16:03:33 -04:00
committed by GitHub
@@ -2,27 +2,20 @@
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
setuptools,
wheel,
}:
buildPythonPackage rec {
pname = "parts";
version = "2.1.0";
format = "pyproject";
disabled = pythonOlder "3.7";
version = "3.0.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-zauHOv8pM47CVIQIo8aMMPZJgwIowgbVLvfFWzIqHoc=";
hash = "sha256-MuZDe/j04sE8tX6658zYwbebwGYp7r3wVBbumoBJ2WQ=";
};
nativeBuildInputs = [
setuptools
wheel
];
build-system = [ setuptools ];
# Project has no tests
doCheck = false;
@@ -32,7 +25,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Library for common list functions related to partitioning lists";
homepage = "https://github.com/lapets/parts";
license = with licenses; [ mit ];
changelog = "https://github.com/lapets/parts/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}