linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / moretools / default.nix
blob5a96682accdb74d97479cdb3d64dabb0ebc88957
1 { lib, buildPythonPackage, fetchPypi
2 , six, pathpy, zetup, pytest
3 , decorator }:
5 buildPythonPackage rec {
6   pname = "moretools";
7   version = "0.1.12";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "73b0469d4f1df6d967508103473f0b1524708adbff71f8f90ef71d9a44226b22";
12   };
14   checkPhase = ''
15     py.test test
16   '';
18   nativeBuildInputs = [ zetup ];
19   checkInputs = [ six pathpy pytest ];
20   propagatedBuildInputs = [ decorator ];
22   meta = with lib; {
23     description = ''
24       Many more basic tools for python 2/3 extending itertools, functools, operator and collections
25     '';
26     homepage = "https://bitbucket.org/userzimmermann/python-moretools";
27     license = licenses.gpl3Plus;
28     platforms = platforms.unix;
29   };