summary refs log tree commit diff
path: root/pkgs/development/python-modules/more-itertools/default.nix
blob: c39bf461bec218592102c56caf769640650c02ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib
, buildPythonPackage
, fetchPypi
, nose
, six
}:


buildPythonPackage rec {
  pname = "more-itertools";
  version = "4.3.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "c476b5d3a34e12d40130bc2f935028b5f636df8f372dc2c1c01dc19681b2039e";
  };

  checkInputs = [ nose ];
  propagatedBuildInputs = [ six ];

  meta = {
    homepage = https://more-itertools.readthedocs.org;
    description = "Expansion of the itertools module";
    license = lib.licenses.mit;
  };
}