My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/zipstream/default.nix

20 lines
474 B

{ lib, buildPythonPackage, fetchPypi, nose }:
buildPythonPackage rec {
pname = "zipstream";
version = "1.1.4";
src = fetchPypi {
inherit pname version;
sha256 = "01im5anqdyggmwkigqcjg0qw2a5bnn84h33mfaqjjd69a28lpwif";
};
checkInputs = [ nose ];
meta = {
description = "A zip archive generator";
homepage = "https://github.com/allanlei/python-zipstream";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ ];
};
}