My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/miniupnpc/default.nix

18 lines
420 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "miniupnpc";
version = "2.0.2";
src = fetchPypi {
inherit pname version;
sha256 = "0ca94zz7sr2x57j218aypxqcwkr23n8js30f3yrvvqbg929nr93y";
};
meta = with lib; {
description = "miniUPnP client";
homepage = "http://miniupnp.free.fr/";
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
};
}