python3Packages.parts: init at 1.0.2
This commit is contained in:
parent
e83c692f97
commit
10b1c7e54b
|
@ -0,0 +1,25 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "parts";
|
||||
version = "1.0.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1ym238hxwsw15ivvf6gzmkmla08b9hwhdyc3v6rs55wga9j3a4db";
|
||||
};
|
||||
|
||||
# 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 ];
|
||||
};
|
||||
}
|
|
@ -4751,6 +4751,8 @@ in {
|
|||
|
||||
partd = callPackage ../development/python-modules/partd { };
|
||||
|
||||
parts = callPackage ../development/python-modules/parts { };
|
||||
|
||||
parver = callPackage ../development/python-modules/parver { };
|
||||
arpeggio = callPackage ../development/python-modules/arpeggio { };
|
||||
|
||||
|
|
Loading…
Reference in New Issue