pythonPackages: Move my libraries to python-modules
This commit is contained in:
22
pkgs/development/python-modules/zipstream/default.nix
Normal file
22
pkgs/development/python-modules/zipstream/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user