Merge pull request #306913 from hacker1024/fix/pystemd-lxml

python3Packages.pystemd: Move runtime dependencies to propagatedBuildInputs

authored by Florian Klink and committed by GitHub a89c4f54 d77b0cf4

+3 -1
+3 -1
pkgs/development/python-modules/pystemd/default.nix
··· 25 25 26 26 nativeBuildInputs = [ pkg-config ]; 27 27 28 - nativeCheckInputs = [ lxml mock psutil pytest ]; 28 + propagatedBuildInputs = [ lxml psutil ]; 29 + 30 + nativeCheckInputs = [ mock pytest ]; 29 31 30 32 checkPhase = "pytest tests"; 31 33