nixpkgs-suyu/pkgs/development/python-modules/zipp/default.nix

31 lines
644 B
Nix
Raw Normal View History

2019-04-01 16:58:26 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, 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
};
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";
homepage = "https://github.com/jaraco/zipp";
2019-04-01 16:58:26 +02:00
license = licenses.mit;
maintainers = with maintainers; [ ];
2019-04-01 16:58:26 +02:00
};
}