1{ lib, buildPythonPackage, fetchPypi, nose }:
2
3buildPythonPackage rec {
4 pname = "zipstream";
5 version = "1.1.4";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "01im5anqdyggmwkigqcjg0qw2a5bnn84h33mfaqjjd69a28lpwif";
10 };
11
12 checkInputs = [ nose ];
13
14 meta = {
15 description = "A zip archive generator";
16 homepage = "https://github.com/allanlei/python-zipstream";
17 license = lib.licenses.gpl3Plus;
18 maintainers = with lib.maintainers; [ ];
19 };
20}