about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2024-04-29 14:33:49 +0300
committerGitHub <noreply@github.com>2024-04-29 14:33:49 +0300
commita89c4f5411da503aedbce629be535ec2da1e7f7b (patch)
treed0b9e13fb1425e3a8f551be85b80a83e4fd89845
parentd77b0cf4f106be4da129c4494d8fe10a66d8217a (diff)
parentf6e034c42e19157a4a8ba45d106f09669985b516 (diff)
Merge pull request #306913 from hacker1024/fix/pystemd-lxml
python3Packages.pystemd: Move runtime dependencies to propagatedBuildInputs
-rw-r--r--pkgs/development/python-modules/pystemd/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pystemd/default.nix b/pkgs/development/python-modules/pystemd/default.nix
index 6787c0a897822..44251a333ed9c 100644
--- a/pkgs/development/python-modules/pystemd/default.nix
+++ b/pkgs/development/python-modules/pystemd/default.nix
@@ -25,7 +25,9 @@ buildPythonPackage rec {
 
   nativeBuildInputs = [ pkg-config ];
 
-  nativeCheckInputs = [ lxml mock psutil pytest ];
+  propagatedBuildInputs = [ lxml psutil ];
+
+  nativeCheckInputs = [ mock pytest ];
 
   checkPhase = "pytest tests";