Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
619 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
dbus-python,
fetchFromGitHub,
numpy,
openrazer-daemon,
setuptools,
}:
let
common = import ./common.nix { inherit lib fetchFromGitHub; };
in
buildPythonPackage (
common
// {
pname = "openrazer";
sourceRoot = "${common.src.name}/pylib";
nativeBuildInputs = [ setuptools ];
dependencies = [
dbus-python
numpy
openrazer-daemon
];
# no tests run
doCheck = false;
meta = common.meta // {
description = "Entirely open source Python library that allows you to manage your Razer peripherals on GNU/Linux";
};
}
)