pythonPackages.openrazer: init at 2.6.0

This commit is contained in:
Evan Stoll
2019-08-30 17:20:44 -04:00
parent d9f95c1b1e
commit 50eba5b688
3 changed files with 44 additions and 0 deletions
@@ -0,0 +1,26 @@
{ buildPythonPackage
, dbus-python
, fetchFromGitHub
, numpy
, stdenv
, openrazer-daemon
}:
let
common = import ./common.nix { inherit stdenv fetchFromGitHub; };
in
buildPythonPackage (common // rec {
pname = "openrazer";
sourceRoot = "source/pylib";
propagatedBuildInputs = [
dbus-python
numpy
openrazer-daemon
];
meta = common.meta // {
description = "An entirely open source Python library that allows you to manage your Razer peripherals on GNU/Linux";
};
})