about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/zipstream/default.nix
blob: ec885c6df0f4d0df0a0c68f322c7ef13b547b867 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ 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; [ primeos ];
  };
}