pythonPackages: Move my libraries to python-modules

This commit is contained in:
Michael Weiss
2017-10-31 17:28:59 +01:00
parent 8e91f4ea91
commit 6df9c74238
4 changed files with 72 additions and 58 deletions

View File

@@ -0,0 +1,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 ];
};
}