pythonPackages.jug: fix tests
these seem to have switched to pytest tests in 2.0.2
This commit is contained in:
parent
6aeccf3bcb
commit
570dbab975
|
@ -1,7 +1,8 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi, fetchpatch
|
||||
, nose, numpy
|
||||
, bottle, pyyaml, redis, six
|
||||
, zlib }:
|
||||
, zlib
|
||||
, pytestCheckHook }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "Jug";
|
||||
|
@ -21,6 +22,9 @@ buildPythonPackage rec {
|
|||
sha256 = "859a4b4cb26a0010299b189c92cfba626852c97a38e22f3d1b56e4e1d8ad8620";
|
||||
};
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
pythonImportsCheck = [ "jug" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A Task-Based Parallelization Framework";
|
||||
license = licenses.mit;
|
||||
|
|
Loading…
Reference in New Issue