nixpkgs/pkgs/development/python-modules/moretools/default.nix
2019-03-15 22:12:47 +01:00

31 lines
732 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, six, pathpy, zetup, pytest
, decorator }:
buildPythonPackage rec {
pname = "moretools";
version = "0.1.8";
src = fetchPypi {
inherit pname version;
sha256 = "03ni7k0kcgrm3y605c29gqlyp779fx1xc3r8xb742lzd6ni30kdg";
};
checkPhase = ''
py.test test
'';
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;
};
}