about summary refs log tree commit diff
path: root/pkgs/development/python-modules/more-itertools/default.nix
blob: e618f039ebdffc00a4e7f45394e65d087d28643c (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.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0cadwsr97c80k18if7qy5d8j8l1zj3yhnkm6kbngk0lpl7pxq8ax";
  };

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

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