Skip to content

Commit

Permalink
pythonPackages.jug: fix tests
Browse files Browse the repository at this point in the history
these seem to have switched to pytest tests in 2.0.2
  • Loading branch information
risicle authored and Jon committed Sep 9, 2020
1 parent 6aeccf3 commit 570dbab
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkgs/development/python-modules/jug/default.nix
@@ -1,7 +1,8 @@
{ stdenv, buildPythonPackage, fetchPypi, fetchpatch
, nose, numpy
, bottle, pyyaml, redis, six
, zlib }:
, zlib
, pytestCheckHook }:

buildPythonPackage rec {
pname = "Jug";
Expand All @@ -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;
Expand Down

0 comments on commit 570dbab

Please sign in to comment.