nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv, 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 broken = stdenv.isDarwin;
14 description = "miniUPnP client";
15 homepage = "http://miniupnp.free.fr/";
16 license = licenses.mit;
17 maintainers = with maintainers; [ peterhoeg ];
18 };
19}