Files
nixpkgs/pkgs/development/python-modules/parts/default.nix
T

33 lines
694 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "parts";
version = "4.0.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-uw/bo+Y24KIgKH+hfc4iUboH8jJKeaoQGHBv6KjZixU=";
};
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 ];
};
}