Skip to content

Commit

Permalink
pythonPackages.miniupnpc: init at 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhoeg authored and Robert Schütz committed Mar 4, 2018
1 parent 083ac5a commit b1d7d13
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
18 changes: 18 additions & 0 deletions pkgs/development/python-modules/miniupnpc/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2888,6 +2888,8 @@ in {
};
};

miniupnpc = callPackage ../development/python-modules/miniupnpc {};

mixpanel = buildPythonPackage rec {
version = "4.0.2";
name = "mixpanel-${version}";
Expand Down

0 comments on commit b1d7d13

Please sign in to comment.