a5adf1ddd8
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
27 lines
507 B
Nix
27 lines
507 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, dbus-python
|
|
, fetchFromGitHub
|
|
, numpy
|
|
, stdenv
|
|
, openrazer-daemon
|
|
}:
|
|
|
|
let
|
|
common = import ./common.nix { inherit stdenv lib 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";
|
|
};
|
|
})
|