about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/jaraco-itertools/default.nix
blob: 906733508c25b43fac2137d683c881928cf122fe (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
27
28
29
30
31
32
33
34
35
36
{ lib, buildPythonPackage, fetchPypi, setuptools-scm
, inflect, more-itertools, six, pytest
}:

buildPythonPackage rec {
  pname = "jaraco-itertools";
  version = "6.2.1";
  format = "pyproject";

  src = fetchPypi {
    pname = "jaraco.itertools";
    inherit version;
    hash = "sha256-YJjts3xrgCPzeU1CWIoTv3WyygK0D/l5XIRry+DBtGw=";
  };

  pythonNamespaces = [ "jaraco" ];

  nativeBuildInputs = [ setuptools-scm ];

  propagatedBuildInputs = [ inflect more-itertools six ];
  nativeCheckInputs = [ pytest ];

  # tests no longer available through pypi
  doCheck = false;
  checkPhase = ''
    pytest
  '';

  pythonImportsCheck = [ "jaraco.itertools" ];

  meta = with lib; {
    description = "Tools for working with iterables";
    homepage = "https://github.com/jaraco/jaraco.itertools";
    license = licenses.mit;
  };
}