python311Packages.openrazer: fix indentation

This commit is contained in:
Sandro Jäckel
2024-05-27 00:18:33 +02:00
parent 124fa58088
commit 0d8fe4b476
@@ -18,46 +18,43 @@
let
common = import ./common.nix { inherit lib fetchFromGitHub; };
in
buildPythonPackage (
common
// {
pname = "openrazer-daemon";
buildPythonPackage (common // {
pname = "openrazer-daemon";
outputs = [
"out"
"man"
];
outputs = [
"out"
"man"
];
sourceRoot = "${common.src.name}/daemon";
sourceRoot = "${common.src.name}/daemon";
postPatch = ''
substituteInPlace openrazer_daemon/daemon.py \
--replace-fail "plugdev" "openrazer"
'';
postPatch = ''
substituteInPlace openrazer_daemon/daemon.py \
--replace-fail "plugdev" "openrazer"
'';
nativeBuildInputs = [ setuptools ];
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
daemonize
dbus-python
gobject-introspection
gtk3
pygobject3
pyudev
setproctitle
notify2
];
propagatedBuildInputs = [
daemonize
dbus-python
gobject-introspection
gtk3
pygobject3
pyudev
setproctitle
notify2
];
postInstall = ''
DESTDIR="$out" PREFIX="" make manpages install-resources install-systemd
'';
postInstall = ''
DESTDIR="$out" PREFIX="" make manpages install-resources install-systemd
'';
# no tests run
doCheck = false;
# no tests run
doCheck = false;
meta = common.meta // {
description = "An entirely open source user-space daemon that allows you to manage your Razer peripherals on GNU/Linux";
mainProgram = "openrazer-daemon";
};
}
)
meta = common.meta // {
description = "An entirely open source user-space daemon that allows you to manage your Razer peripherals on GNU/Linux";
mainProgram = "openrazer-daemon";
};
})