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