python3Packages.dask-jobqueue: cleanup

This commit is contained in:
Gaetan Lepage
2026-07-07 08:41:18 +00:00
parent cf86e18da6
commit c359bb290d
@@ -11,13 +11,13 @@
dask,
distributed,
# checks
# tests
cryptography,
pytest-asyncio,
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "dask-jobqueue";
version = "0.9.0";
pyproject = true;
@@ -25,7 +25,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "dask";
repo = "dask-jobqueue";
tag = version;
tag = finalAttrs.version;
hash = "sha256-YujfhjOJzl4xsjjsyrQkEu/CBR04RwJ79c1iSTcMIgw=";
};
@@ -100,4 +100,4 @@ buildPythonPackage rec {
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}
})