6fa588ba18
- add changelog to meta
33 lines
694 B
Nix
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 ];
|
|
};
|
|
}
|