Files
nixpkgs/pkgs/development/python-modules/parts/default.nix
T
Fabian Affolter 6fa588ba18 python312Packages.parts: refactor
- add changelog to meta
2025-05-01 09:30:12 +02:00

33 lines
694 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "parts";
version = "3.0.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-MuZDe/j04sE8tX6658zYwbebwGYp7r3wVBbumoBJ2WQ=";
};
build-system = [ setuptools ];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "parts" ];
meta = with lib; {
description = "Library for common list functions related to partitioning lists";
homepage = "https://github.com/lapets/parts";
changelog = "https://github.com/lapets/parts/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}