nixpkgs/pkgs/development/python-modules/pymumble/default.nix
Martin Weinelt 64c346bcf2
python310Packages.pymumble: 1.7 -> 1.6.1
The 1.7 release was yanked, because the protobuf files were not
regenerated, which makes it unusuable.

Unbreaks the botamusique test.
2023-05-09 12:23:10 +02:00

54 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, opuslib
, protobuf
, pytestCheckHook
, pycrypto
, pythonOlder
}:
buildPythonPackage rec {
pname = "pymumble";
version = "1.6.1"; # Don't upgrade to 1.7, version was yanked
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "azlux";
repo = "pymumble";
rev = "refs/tags/${version}";
hash = "sha256-+sT5pqdm4A2rrUcUUmvsH+iazg80+/go0zM1vr9oeuE=";
};
postPatch = ''
# Changes all `library==x.y.z` statements to just `library`
# So that we aren't constrained to a specific version
sed -i 's/\(.*\)==.*/\1/' requirements.txt
'';
propagatedBuildInputs = [
opuslib
protobuf
];
nativeCheckInputs = [
pycrypto
pytestCheckHook
];
pythonImportsCheck = [
"pymumble_py3"
"pymumble_py3.constants"
];
meta = with lib; {
description = "Library to create mumble bots";
homepage = "https://github.com/azlux/pymumble";
changelog = "https://github.com/azlux/pymumble/releases/tag/${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ thelegy infinisil ];
};
}