caffeine-ng: move setuptools_scm dependency to buildInputs
setuptools_scm is only needed during build, not whilst using the package.
This commit is contained in:
parent
cdf8247b68
commit
d64cdba5b4
1 changed files with 5 additions and 2 deletions
|
@ -12,10 +12,13 @@ python3Packages.buildPythonApplication rec {
|
|||
};
|
||||
|
||||
nativeBuildInputs = [ wrapGAppsHook glib ];
|
||||
buildInputs = [ gdk-pixbuf gobject-introspection libnotify gtk3 ];
|
||||
buildInputs = [
|
||||
gdk-pixbuf gobject-introspection libnotify gtk3
|
||||
python3Packages.setuptools_scm
|
||||
];
|
||||
pythonPath = with python3Packages; [
|
||||
dbus-python docopt ewmh pygobject3 pyxdg
|
||||
setproctitle setuptools_scm
|
||||
setproctitle
|
||||
];
|
||||
|
||||
doCheck = false; # There are no tests.
|
||||
|
|
Loading…
Reference in a new issue