1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #319922 from GaetanLepage/dask

python311Packages.dask: 2024.5.2 -> 2024.6.0, python311Packages.dask-awkward: 2024.3.0 -> 2024.6.0, python311Packages.distributed: 2024.5.0 -> 2024.6.0
This commit is contained in:
Dmitry Kalinkin 2024-06-18 14:59:35 -04:00 committed by GitHub
commit 92487a01c4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 16 additions and 16 deletions

View file

@ -21,7 +21,7 @@
buildPythonPackage rec {
pname = "dask-awkward";
version = "2024.3.0";
version = "2024.6.0";
pyproject = true;
disabled = pythonOlder "3.8";
@ -30,18 +30,18 @@ buildPythonPackage rec {
owner = "dask-contrib";
repo = "dask-awkward";
rev = "refs/tags/${version}";
hash = "sha256-Lkbp/XrDHOekMpT71pbxtuozgzU9iiGF2GJZ+tuV/yM=";
hash = "sha256-m/KvPo4IGn19sA5RcA/+OhLMCDBU+9BbMQtK3gHOoEc=";
};
pythonRelaxDeps = [ "awkward" ];
nativeBuildInputs = [
build-system = [
hatch-vcs
hatchling
pythonRelaxDepsHook
];
propagatedBuildInputs = [
dependencies = [
awkward
cachetools
dask
@ -74,11 +74,11 @@ buildPythonPackage rec {
__darwinAllowLocalNetworking = true;
meta = with lib; {
meta = {
description = "Native Dask collection for awkward arrays, and the library to use it";
homepage = "https://github.com/dask-contrib/dask-awkward";
changelog = "https://github.com/dask-contrib/dask-awkward/releases/tag/${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ veprbl ];
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ veprbl ];
};
}

View file

@ -15,7 +15,7 @@
buildPythonPackage rec {
pname = "dask-expr";
version = "1.1.2";
version = "1.1.3";
pyproject = true;
disabled = pythonOlder "3.9";
@ -24,7 +24,7 @@ buildPythonPackage rec {
owner = "dask";
repo = "dask-expr";
rev = "refs/tags/v${version}";
hash = "sha256-Gvib8fyogIiOllDp4SoVQkGcIPHMo9e9AfJWDaZ5sTU=";
hash = "sha256-20gVzmOnVWoPGrGcLp8nhAoiHWunaYZIXOxYho7ZhUs=";
};
postPatch = ''

View file

@ -41,7 +41,7 @@
let
self = buildPythonPackage rec {
pname = "dask";
version = "2024.5.2";
version = "2024.6.0";
pyproject = true;
disabled = pythonOlder "3.9";
@ -50,7 +50,7 @@ let
owner = "dask";
repo = "dask";
rev = "refs/tags/${version}";
hash = "sha256-8U+njWp1g+rmOEuUgh+qz1QyVCZ/gdEPky206cVp7fw=";
hash = "sha256-HtWxVWMk0G2OeBnZKLF5tuOohPbg20Ufl+VH/MX8vK0=";
};
build-system = [

View file

@ -26,7 +26,7 @@
buildPythonPackage rec {
pname = "distributed";
version = "2024.5.0";
version = "2024.6.0";
pyproject = true;
disabled = pythonOlder "3.9";
@ -35,7 +35,7 @@ buildPythonPackage rec {
owner = "dask";
repo = "distributed";
rev = "refs/tags/${version}";
hash = "sha256-9W5BpBQHw1ZXCOWiFPeIlMns/Yys1gtdwQ4Lhd7qjK8=";
hash = "sha256-8TShbpH+DB73G7D4pz8MHC/SPd3RaRttML0S4WaCE4k=";
};
postPatch = ''
@ -76,11 +76,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "distributed" ];
meta = with lib; {
meta = {
description = "Distributed computation in Python";
homepage = "https://distributed.readthedocs.io/";
changelog = "https://github.com/dask/distributed/blob/${version}/docs/source/changelog.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ teh ];
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ teh ];
};
}