Files
nixpkgs/pkgs/development/python-modules/jug/default.nix
T
Martin Weinelt ae89e2a8a3 python3Packages.jug: 2.3.1 -> 2.4.0
https://github.com/luispedro/jug/blob/v2.4.0/ChangeLog

This commit was automatically generated using update-python-libraries.
2025-08-09 19:00:11 +02:00

45 lines
819 B
Nix

{
lib,
bottle,
buildPythonPackage,
fetchPypi,
numpy,
pytestCheckHook,
pythonOlder,
pyyaml,
redis,
}:
buildPythonPackage rec {
pname = "jug";
version = "2.4.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "Jug";
inherit version;
hash = "sha256-B6We+9bW0dfT5DUsxU212e7ueyRc8GgBVPVnIek8ckU=";
};
propagatedBuildInputs = [ bottle ];
nativeCheckInputs = [
numpy
pytestCheckHook
pyyaml
redis
];
pythonImportsCheck = [ "jug" ];
meta = with lib; {
description = "Task-Based Parallelization Framework";
homepage = "https://jug.readthedocs.io/";
changelog = "https://github.com/luispedro/jug/blob/v${version}/ChangeLog";
license = licenses.mit;
maintainers = with maintainers; [ luispedro ];
};
}