2021-03-06 20:48:17 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "parts";
|
2021-09-23 20:12:05 +01:00
|
|
|
version = "1.1.2";
|
2021-03-06 20:48:17 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-09-23 20:12:05 +01:00
|
|
|
sha256 = "2212129476f6d285c3aaab309b80b83664d13dca5a42c5ca3500bd32130af7ec";
|
2021-03-06 20:48:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Project has no tests
|
|
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "parts" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python library for common list functions related to partitioning lists";
|
|
|
|
homepage = "https://github.com/lapets/parts";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|