python.pkgs.GitPython: move ddt to propagatedBuildInputs
It is listed in requirements.txt, not test-requirements.txt.
This commit is contained in:
parent
e138c1e4e8
commit
ee82616089
@ -1,4 +1,4 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi, substituteAll, git, gitdb2, mock, nose, ddt }:
|
{ lib, buildPythonPackage, fetchPypi, isPy27, substituteAll, git, gitdb2, mock, nose, ddt }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
version = "2.1.11";
|
version = "2.1.11";
|
||||||
@ -16,8 +16,8 @@ buildPythonPackage rec {
|
|||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
checkInputs = [ mock nose ddt ];
|
checkInputs = [ nose ] ++ lib.optional isPy27 mock;
|
||||||
propagatedBuildInputs = [ gitdb2 ];
|
propagatedBuildInputs = [ gitdb2 ddt ];
|
||||||
|
|
||||||
# Tests require a git repo
|
# Tests require a git repo
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user