2019-04-01 16:58:26 +02:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2021-06-03 12:09:11 +02:00
|
|
|
, setuptools-scm
|
2019-10-24 08:47:52 +02:00
|
|
|
, more-itertools
|
2019-04-01 16:58:26 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zipp";
|
2021-08-26 21:32:48 +02:00
|
|
|
version = "3.5.0";
|
2019-04-01 16:58:26 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-08-26 21:32:48 +02:00
|
|
|
sha256 = "f5812b1e007e48cff63449a5e9f4e7ebea716b4111f9c4f9a645f91d579bf0c4";
|
2019-04-01 16:58:26 +02:00
|
|
|
};
|
|
|
|
|
2021-08-27 02:25:52 +02:00
|
|
|
nativeBuildInputs = [ setuptools-scm ];
|
2019-04-01 16:58:26 +02:00
|
|
|
|
2019-10-24 08:47:52 +02:00
|
|
|
propagatedBuildInputs = [ more-itertools ];
|
|
|
|
|
2019-06-15 19:22:35 +02:00
|
|
|
# Prevent infinite recursion with pytest
|
|
|
|
doCheck = false;
|
|
|
|
|
2019-04-01 16:58:26 +02:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Pathlib-compatible object wrapper for zip files";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/jaraco/zipp";
|
2019-04-01 16:58:26 +02:00
|
|
|
license = licenses.mit;
|
2021-08-27 02:28:05 +02:00
|
|
|
maintainers = with maintainers; [ ];
|
2019-04-01 16:58:26 +02:00
|
|
|
};
|
|
|
|
}
|