My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/zipp/default.nix

42 lines
770 B

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