1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 15:41:40 +00:00
nixpkgs/pkgs/development/python-modules/zipp/default.nix
2021-09-05 15:00:10 +02:00

31 lines
644 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, setuptools-scm
, more-itertools
}:
buildPythonPackage rec {
pname = "zipp";
version = "3.5.0";
src = fetchPypi {
inherit pname version;
sha256 = "f5812b1e007e48cff63449a5e9f4e7ebea716b4111f9c4f9a645f91d579bf0c4";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ more-itertools ];
# Prevent infinite recursion with pytest
doCheck = false;
meta = with lib; {
description = "Pathlib-compatible object wrapper for zip files";
homepage = "https://github.com/jaraco/zipp";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}