11 buildPythonPackage rec {
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
21 rev = "refs/tags/v${version}";
22 hash = "sha256-+fZXoAUeB/bUI3LrIFlMTktJgn+GNFBiDHvH2Jgo0pg=";
25 __darwinAllowLocalNetworking = true;
27 nativeBuildInputs = [ setuptools ];
29 propagatedBuildInputs = [ pycryptodomex ];
31 nativeCheckInputs = [ pytestCheckHook ];
33 pythonImportsCheck = [ "pyzipper" ];
36 # Tests are parsing CLI output
37 "test_args_from_interpreter_flags"
42 "test_extract_command"
44 "test_temp_dir__forked_child"
46 # Test wants to import asyncore
51 description = "Python zipfile extensions";
52 homepage = "https://github.com/danifus/pyzipper";
53 changelog = "https://github.com/danifus/pyzipper/blob/v${version}/HISTORY.rst";
54 license = licenses.mit;
55 maintainers = with maintainers; [ fab ];