mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
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 {
|
||||
version = "2.1.11";
|
||||
@ -16,8 +16,8 @@ buildPythonPackage rec {
|
||||
})
|
||||
];
|
||||
|
||||
checkInputs = [ mock nose ddt ];
|
||||
propagatedBuildInputs = [ gitdb2 ];
|
||||
checkInputs = [ nose ] ++ lib.optional isPy27 mock;
|
||||
propagatedBuildInputs = [ gitdb2 ddt ];
|
||||
|
||||
# Tests require a git repo
|
||||
doCheck = false;
|
||||
|
Loading…
Reference in New Issue
Block a user