nixpkgs/pkgs/development/python-modules/moretools/default.nix
2020-04-10 17:54:53 +01:00

31 lines
747 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, six, pathpy, zetup, pytest
, decorator }:
buildPythonPackage rec {
pname = "moretools";
version = "0.1.12";
src = fetchPypi {
inherit pname version;
sha256 = "73b0469d4f1df6d967508103473f0b1524708adbff71f8f90ef71d9a44226b22";
};
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;
};
}