11 buildPythonPackage rec {
16 src = fetchFromGitHub {
18 repo = "python-remotezip";
19 rev = "refs/tags/v${version}";
20 hash = "sha256-TNEM7Dm4iH4Z/P/PAqjJppbn1CKmyi9Xpq/sU9O8uxg=";
23 nativeBuildInputs = [ setuptools ];
25 propagatedBuildInputs = [ requests ];
32 pythonImportsCheck = [ "remotezip" ];
35 description = "Python module to access single members of a zip archive without downloading the full content";
36 mainProgram = "remotezip";
37 homepage = "https://github.com/gtsystem/python-remotezip";
38 license = licenses.mit;
39 maintainers = with maintainers; [ nickcao ];