2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
dbus-python,
|
|
|
|
fetchFromGitHub,
|
|
|
|
numpy,
|
|
|
|
openrazer-daemon,
|
|
|
|
setuptools,
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2021-02-05 17:12:51 +00:00
|
|
|
common = import ./common.nix { inherit lib fetchFromGitHub; };
|
2020-04-24 23:36:52 +00:00
|
|
|
in
|
2024-06-05 15:53:02 +00:00
|
|
|
buildPythonPackage (
|
|
|
|
common
|
|
|
|
// {
|
|
|
|
pname = "openrazer";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
sourceRoot = "${common.src.name}/pylib";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
nativeBuildInputs = [ setuptools ];
|
2024-04-21 15:54:59 +00:00
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
dbus-python
|
|
|
|
numpy
|
|
|
|
openrazer-daemon
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
# no tests run
|
|
|
|
doCheck = false;
|
2022-12-17 10:02:37 +00:00
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
meta = common.meta // {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Entirely open source Python library that allows you to manage your Razer peripherals on GNU/Linux";
|
2024-06-05 15:53:02 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
)
|