nixpkgs/pkgs/development/python-modules/jug/default.nix
Robert Scott 570dbab975 pythonPackages.jug: fix tests
these seem to have switched to pytest tests in 2.0.2
2020-09-08 17:04:31 -07:00

35 lines
729 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, fetchpatch
, nose, numpy
, bottle, pyyaml, redis, six
, zlib
, pytestCheckHook }:
buildPythonPackage rec {
pname = "Jug";
version = "2.0.2";
buildInputs = [ nose numpy ];
propagatedBuildInputs = [
bottle
pyyaml
redis
six
zlib
];
src = fetchPypi {
inherit pname version;
sha256 = "859a4b4cb26a0010299b189c92cfba626852c97a38e22f3d1b56e4e1d8ad8620";
};
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "jug" ];
meta = with stdenv.lib; {
description = "A Task-Based Parallelization Framework";
license = licenses.mit;
homepage = "https://jug.readthedocs.io/";
maintainers = with maintainers; [ luispedro ];
};
}