forked from mirrors/nixpkgs
pythonPackages.miniupnpc: init at 2.0.2
This commit is contained in:
parent
083ac5add3
commit
b1d7d13e64
18
pkgs/development/python-modules/miniupnpc/default.nix
Normal file
18
pkgs/development/python-modules/miniupnpc/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "miniupnpc";
|
||||
version = "2.0.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0ca94zz7sr2x57j218aypxqcwkr23n8js30f3yrvvqbg929nr93y";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "miniUPnP client";
|
||||
homepage = http://miniupnp.free.fr/;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ peterhoeg ];
|
||||
};
|
||||
}
|
|
@ -2888,6 +2888,8 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
miniupnpc = callPackage ../development/python-modules/miniupnpc {};
|
||||
|
||||
mixpanel = buildPythonPackage rec {
|
||||
version = "4.0.2";
|
||||
name = "mixpanel-${version}";
|
||||
|
|
Loading…
Reference in a new issue