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

31 lines
644 B
Nix
Raw Normal View History

2019-04-01 14:58:26 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, setuptools-scm
2019-10-24 06:47:52 +00:00
, more-itertools
2019-04-01 14:58:26 +00:00
}:
buildPythonPackage rec {
pname = "zipp";
2021-10-08 22:23:18 +00:00
version = "3.6.0";
2019-04-01 14:58:26 +00:00
src = fetchPypi {
inherit pname version;
2021-10-08 22:23:18 +00:00
sha256 = "71c644c5369f4a6e07636f0aa966270449561fcea2e3d6747b8d23efaa9d7832";
2019-04-01 14:58:26 +00:00
};
nativeBuildInputs = [ setuptools-scm ];
2019-04-01 14:58:26 +00:00
2019-10-24 06:47:52 +00:00
propagatedBuildInputs = [ more-itertools ];
2019-06-15 17:22:35 +00:00
# Prevent infinite recursion with pytest
doCheck = false;
2019-04-01 14:58:26 +00:00
meta = with lib; {
description = "Pathlib-compatible object wrapper for zip files";
homepage = "https://github.com/jaraco/zipp";
2019-04-01 14:58:26 +00:00
license = licenses.mit;
maintainers = with maintainers; [ ];
2019-04-01 14:58:26 +00:00
};
}