Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 35b2ad79ff6d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 504fe636f268
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Mar 24, 2020

  1. python3Packages.pymumble: init at 0.3.1

    thelegy authored and Jon committed Mar 24, 2020
    Copy the full SHA
    504fe63 View commit details
Showing with 33 additions and 0 deletions.
  1. +31 −0 pkgs/development/python-modules/pymumble/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
31 changes: 31 additions & 0 deletions pkgs/development/python-modules/pymumble/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -5068,6 +5068,8 @@ in {

pylint-plugin-utils = callPackage ../development/python-modules/pylint-plugin-utils { };

pymumble = callPackage ../development/python-modules/pymumble { };

pyomo = callPackage ../development/python-modules/pyomo { };

pyopencl = callPackage ../development/python-modules/pyopencl { };