1{ lib
2, buildPythonPackage
3, fetchPypi
4, setuptools-scm
5, more-itertools
6}:
7
8buildPythonPackage rec {
9 pname = "zipp";
10 version = "3.6.0";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "71c644c5369f4a6e07636f0aa966270449561fcea2e3d6747b8d23efaa9d7832";
15 };
16
17 nativeBuildInputs = [ setuptools-scm ];
18
19 propagatedBuildInputs = [ more-itertools ];
20
21 # Prevent infinite recursion with pytest
22 doCheck = false;
23
24 meta = with lib; {
25 description = "Pathlib-compatible object wrapper for zip files";
26 homepage = "https://github.com/jaraco/zipp";
27 license = licenses.mit;
28 maintainers = with maintainers; [ ];
29 };
30}