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

python3Packages.pystemd: Move runtime dependencies to propagatedBuildInputs
This commit is contained in:
Florian Klink 2024-04-29 14:33:49 +03:00 committed by GitHub
commit a89c4f5411
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -25,7 +25,9 @@ buildPythonPackage rec {
nativeBuildInputs = [ pkg-config ];
nativeCheckInputs = [ lxml mock psutil pytest ];
propagatedBuildInputs = [ lxml psutil ];
nativeCheckInputs = [ mock pytest ];
checkPhase = "pytest tests";