2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
2017-08-29 07:32:42 +01:00
|
|
|
, six, pathpy, zetup, pytest
|
|
|
|
, decorator }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "moretools";
|
2019-10-16 10:43:09 +01:00
|
|
|
version = "0.1.12";
|
2017-08-29 07:32:42 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-16 10:43:09 +01:00
|
|
|
sha256 = "73b0469d4f1df6d967508103473f0b1524708adbff71f8f90ef71d9a44226b22";
|
2017-08-29 07:32:42 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
py.test test
|
|
|
|
'';
|
|
|
|
|
2019-03-15 20:52:37 +00:00
|
|
|
nativeBuildInputs = [ zetup ];
|
|
|
|
checkInputs = [ six pathpy pytest ];
|
|
|
|
propagatedBuildInputs = [ decorator ];
|
2017-08-29 07:32:42 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-08-29 07:32:42 +01:00
|
|
|
description = ''
|
|
|
|
Many more basic tools for python 2/3 extending itertools, functools, operator and collections
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://bitbucket.org/userzimmermann/python-moretools";
|
2017-08-29 07:32:42 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2019-02-17 13:00:33 +00:00
|
|
|
platforms = platforms.unix;
|
2017-08-29 07:32:42 +01:00
|
|
|
};
|
|
|
|
}
|