summary refs log tree commit diff
path: root/pkgs/development/python-modules/zipstream/default.nix
blob: aac2bceeb15d2b2bb8e75f47cd20c0e8d83b3b85 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildPythonPackage, fetchurl, nose }:

let
  pname = "zipstream";
  version = "1.1.4";
in buildPythonPackage rec {
  name = "${pname}-${version}";

  src = fetchurl {
    url = "mirror://pypi/z/${pname}/${name}.tar.gz";
    sha256 = "01im5anqdyggmwkigqcjg0qw2a5bnn84h33mfaqjjd69a28lpwif";
  };

  buildInputs = [ nose ];

  meta = {
    description = "A zip archive generator";
    homepage = https://github.com/allanlei/python-zipstream;
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ primeos ];
  };
}