summary refs log tree commit diff
path: root/pkgs/development/python-modules/miniupnpc/default.nix
blob: 316f5c0853f622c539d74f01ded9b6bcbc3b8140 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "miniupnpc";
  version = "2.0.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0ca94zz7sr2x57j218aypxqcwkr23n8js30f3yrvvqbg929nr93y";
  };

  meta = with lib; {
    broken = stdenv.isDarwin;
    description = "miniUPnP client";
    homepage = "http://miniupnp.free.fr/";
    license = licenses.mit;
    maintainers = with maintainers; [ peterhoeg ];
  };
}