Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 22 lines 543 B view raw
1{ lib, buildPythonPackage, fetchurl, nose }: 2 3let 4 pname = "zipstream"; 5 version = "1.1.4"; 6in buildPythonPackage rec { 7 name = "${pname}-${version}"; 8 9 src = fetchurl { 10 url = "mirror://pypi/z/${pname}/${name}.tar.gz"; 11 sha256 = "01im5anqdyggmwkigqcjg0qw2a5bnn84h33mfaqjjd69a28lpwif"; 12 }; 13 14 buildInputs = [ nose ]; 15 16 meta = { 17 description = "A zip archive generator"; 18 homepage = https://github.com/allanlei/python-zipstream; 19 license = lib.licenses.gpl3Plus; 20 maintainers = with lib.maintainers; [ primeos ]; 21 }; 22}