python3Packages.fixtures: split dependencies into their correct inputs

This commit is contained in:
Martin Weinelt 2021-02-12 05:42:22 +01:00
parent 45fadd9b7f
commit 366e9ffc67
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -17,7 +17,17 @@ buildPythonPackage rec {
sha256 = "fcf0d60234f1544da717a9738325812de1f42c2fa085e2d9252d8fff5712b2ef";
};
propagatedBuildInputs = [ pbr testtools mock ];
nativeBuildInputs = [
pbr
];
propagatedBuildInputs = [
testtools
];
checkInputs = [
mock
];
checkPhase = ''
${python.interpreter} -m testtools.run fixtures.test_suite