depot/third_party/nixpkgs/pkgs/development/python-modules/zipstream/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

20 lines
480 B
Nix

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