linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / zipstream / default.nix
blobec885c6df0f4d0df0a0c68f322c7ef13b547b867
1 { lib, buildPythonPackage, fetchPypi, nose }:
3 buildPythonPackage rec {
4   pname = "zipstream";
5   version = "1.1.4";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "01im5anqdyggmwkigqcjg0qw2a5bnn84h33mfaqjjd69a28lpwif";
10   };
12   checkInputs = [ nose ];
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; [ primeos ];
19   };