pythonPackages.btrees: Fix tests by adding zope_testrunner input
This commit is contained in:
parent
0c96b7099e
commit
7c96b917a5
1 changed files with 9 additions and 1 deletions
|
@ -1,4 +1,11 @@
|
|||
{ stdenv, fetchPypi, buildPythonPackage, persistent, zope_interface, transaction }:
|
||||
{ stdenv
|
||||
, fetchPypi
|
||||
, buildPythonPackage
|
||||
, persistent
|
||||
, zope_interface
|
||||
, transaction
|
||||
, zope_testrunner
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "BTrees";
|
||||
|
@ -7,6 +14,7 @@ buildPythonPackage rec {
|
|||
|
||||
buildInputs = [ transaction ];
|
||||
propagatedBuildInputs = [ persistent zope_interface ];
|
||||
checkInputs = [ zope_testrunner ];
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
|
|
Loading…
Reference in a new issue