fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
31 lines
564 B
Nix
31 lines
564 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
cctools,
|
|
which,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "miniupnpc";
|
|
version = "2.0.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0ca94zz7sr2x57j218aypxqcwkr23n8js30f3yrvvqbg929nr93y";
|
|
};
|
|
|
|
nativeBuildInputs = lib.optionals stdenv.isDarwin [
|
|
cctools
|
|
which
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "miniUPnP client";
|
|
homepage = "http://miniupnp.free.fr/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
};
|
|
}
|