python3Packages.pymumble: init at 0.3.1
This commit is contained in:
parent
35b2ad79ff
commit
504fe636f2
31
pkgs/development/python-modules/pymumble/default.nix
Normal file
31
pkgs/development/python-modules/pymumble/default.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ buildPythonPackage,
|
||||||
|
fetchFromGitHub,
|
||||||
|
isPy27,
|
||||||
|
lib,
|
||||||
|
opuslib,
|
||||||
|
protobuf,
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pymumble";
|
||||||
|
version = "0.3.1";
|
||||||
|
disabled = isPy27;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "azlux";
|
||||||
|
repo = "pymumble";
|
||||||
|
rev = "1dd6d6d4df2fdef33202f17e2acf3ba9678a5737";
|
||||||
|
sha256 = "1r1sch8xrpbzffsb72lhp5xjr3ac3xb599n44vsfmaam3xklz6vz";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ opuslib protobuf ];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "pymumble_py3" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python 3 version of pymumble, Mumble library used for multiple uses like making mumble bot.";
|
||||||
|
homepage = "https://github.com/azlux/pymumble";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ thelegy ];
|
||||||
|
};
|
||||||
|
}
|
@ -5068,6 +5068,8 @@ in {
|
|||||||
|
|
||||||
pylint-plugin-utils = callPackage ../development/python-modules/pylint-plugin-utils { };
|
pylint-plugin-utils = callPackage ../development/python-modules/pylint-plugin-utils { };
|
||||||
|
|
||||||
|
pymumble = callPackage ../development/python-modules/pymumble { };
|
||||||
|
|
||||||
pyomo = callPackage ../development/python-modules/pyomo { };
|
pyomo = callPackage ../development/python-modules/pyomo { };
|
||||||
|
|
||||||
pyopencl = callPackage ../development/python-modules/pyopencl { };
|
pyopencl = callPackage ../development/python-modules/pyopencl { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user