27 lines
601 B
Nix
27 lines
601 B
Nix
{ buildPythonPackage
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zipfile2";
|
|
version = "0.0.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cournape";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-BwcEgW4XrQqz0Jmtbyxf8q0mWTJXv2dL3Tk7N/IYuMI=";
|
|
};
|
|
|
|
patches = [ ./no-setuid.patch ];
|
|
|
|
pythonImportsCheck = [ "zipfile2" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/cournape/zipfile2";
|
|
description = "A backwards-compatible improved zipfile class";
|
|
maintainers = with maintainers; [ genericnerdyusername ];
|
|
license = licenses.psfl;
|
|
};
|
|
}
|