nixpkgs/pkgs/development/python-modules/moretools/default.nix

31 lines
744 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
, six, pathpy, zetup, pytest
, decorator }:
buildPythonPackage rec {
pname = "moretools";
2019-04-16 19:15:37 +02:00
version = "0.1.9";
src = fetchPypi {
inherit pname version;
2019-04-16 19:15:37 +02:00
sha256 = "f531cc79b7cd0c4aab590d5d4d0291f7cf6f083398be1dd523224b3385b732f4";
};
checkPhase = ''
py.test test
'';
2019-03-15 21:52:37 +01:00
nativeBuildInputs = [ zetup ];
checkInputs = [ six pathpy pytest ];
propagatedBuildInputs = [ decorator ];
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;
platforms = platforms.unix;
};
}