2018-06-23 15:27:58 +02:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, nose }:
|
2017-10-31 17:28:59 +01:00
|
|
|
|
2018-06-23 15:27:58 +02:00
|
|
|
buildPythonPackage rec {
|
2017-10-31 17:28:59 +01:00
|
|
|
pname = "zipstream";
|
|
|
|
version = "1.1.4";
|
|
|
|
|
2018-06-23 15:27:58 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-10-31 17:28:59 +01:00
|
|
|
sha256 = "01im5anqdyggmwkigqcjg0qw2a5bnn84h33mfaqjjd69a28lpwif";
|
|
|
|
};
|
|
|
|
|
2018-06-23 15:27:58 +02:00
|
|
|
checkInputs = [ nose ];
|
2017-10-31 17:28:59 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A zip archive generator";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/allanlei/python-zipstream";
|
2017-10-31 17:28:59 +01:00
|
|
|
license = lib.licenses.gpl3Plus;
|
|
|
|
maintainers = with lib.maintainers; [ primeos ];
|
|
|
|
};
|
|
|
|
}
|