python3Packages.parts: 1.1.2 -> 1.2.0
This commit is contained in:
parent
745f45dace
commit
b1c9bf9d6b
1 changed files with 7 additions and 3 deletions
|
@ -5,16 +5,20 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "parts";
|
pname = "parts";
|
||||||
version = "1.1.2";
|
version = "1.2.0";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "2212129476f6d285c3aaab309b80b83664d13dca5a42c5ca3500bd32130af7ec";
|
sha256 = "sha256-sfeh6KdprW40ZgfItm9oojDlrI4X29+O7pzfafIawB0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Project has no tests
|
# Project has no tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
pythonImportsCheck = [ "parts" ];
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"parts"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python library for common list functions related to partitioning lists";
|
description = "Python library for common list functions related to partitioning lists";
|
||||||
|
|
Loading…
Reference in a new issue