python.pkgs.zipp: init at 0.3.3
This commit is contained in:
parent
2fc28603b8
commit
4ea19b7771
31
pkgs/development/python-modules/zipp/default.nix
Normal file
31
pkgs/development/python-modules/zipp/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, setuptools_scm
|
||||
, pytest
|
||||
, pytest-flake8
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "zipp";
|
||||
version = "0.3.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "55ca87266c38af6658b84db8cfb7343cdb0bf275f93c7afaea0d8e7a209c7478";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ setuptools_scm ];
|
||||
|
||||
checkInputs = [ pytest pytest-flake8 ];
|
||||
|
||||
checkPhase = ''
|
||||
pytest
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Pathlib-compatible object wrapper for zip files";
|
||||
homepage = https://github.com/jaraco/zipp;
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
@ -4738,6 +4738,8 @@ in {
|
||||
|
||||
zfec = callPackage ../development/python-modules/zfec { };
|
||||
|
||||
zipp = callPackage ../development/python-modules/zipp { };
|
||||
|
||||
zope_broken = callPackage ../development/python-modules/zope_broken { };
|
||||
|
||||
zope_component = callPackage ../development/python-modules/zope_component { };
|
||||
|
Loading…
Reference in New Issue
Block a user