2017-08-29 07:32:42 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
|
|
|
, six, pathpy, zetup, pytest
|
|
|
|
, decorator }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "moretools";
|
2019-04-16 18:15:37 +01:00
|
|
|
version = "0.1.9";
|
2017-08-29 07:32:42 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-16 18:15:37 +01:00
|
|
|
sha256 = "f531cc79b7cd0c4aab590d5d4d0291f7cf6f083398be1dd523224b3385b732f4";
|
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
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = ''
|
|
|
|
Many more basic tools for python 2/3 extending itertools, functools, operator and collections
|
|
|
|
'';
|
|
|
|
homepage = https://bitbucket.org/userzimmermann/python-moretools;
|
|
|
|
license = licenses.gpl3Plus;
|
2019-02-17 13:00:33 +00:00
|
|
|
platforms = platforms.unix;
|
2017-08-29 07:32:42 +01:00
|
|
|
};
|
|
|
|
}
|