linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / openrazer / pylib.nix
blobfb83d64c5020f2ab98d7fd9cce2bcdbe642862c2
1 { lib
2 , buildPythonPackage
3 , dbus-python
4 , fetchFromGitHub
5 , numpy
6 , openrazer-daemon
7 }:
9 let
10   common = import ./common.nix { inherit lib fetchFromGitHub; };
12 buildPythonPackage (common // rec {
13   pname = "openrazer";
15   sourceRoot = "source/pylib";
17   propagatedBuildInputs = [
18     dbus-python
19     numpy
20     openrazer-daemon
21   ];
23   meta = common.meta // {
24     description = "An entirely open source Python library that allows you to manage your Razer peripherals on GNU/Linux";
25   };