linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / zipp / 1.nix
blob0de729928d0f65004c2e537ccab5f98ada5efc18
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools_scm
5 , pytest
6 , pytest-flake8
7 , more-itertools
8 , toml
9 }:
11 buildPythonPackage rec {
12   pname = "zipp";
13   version = "1.0.0";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "0v3qayhqv7vyzydpydwcp51bqciw8p2ajddw68x5k8zppc0vx3yk";
18   };
20   nativeBuildInputs = [ setuptools_scm ];
22   propagatedBuildInputs = [ more-itertools ];
24   checkInputs = [ pytest pytest-flake8 ];
26   checkPhase = ''
27     pytest
28   '';
30   # Prevent infinite recursion with pytest
31   doCheck = false;
33   meta = with lib; {
34     description = "Pathlib-compatible object wrapper for zip files";
35     homepage = "https://github.com/jaraco/zipp";
36     license = licenses.mit;
37   };