1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "miniupnpc"; 5 version = "2.0.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0ca94zz7sr2x57j218aypxqcwkr23n8js30f3yrvvqbg929nr93y"; 10 }; 11 12 meta = with lib; { 13 description = "miniUPnP client"; 14 homepage = "http://miniupnp.free.fr/"; 15 license = licenses.mit; 16 maintainers = with maintainers; [ peterhoeg ]; 17 }; 18}