From 4dc443067572c9e4305fd5d9d37f0ea2fcf7cbd9 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 17 May 2024 23:20:24 +0200 Subject: [PATCH] python311Packages.dask-expr: 1.1.0 -> 1.1.1 Diff: https://github.com/dask/dask-expr/compare/refs/tags/v1.1.0...v1.1.1 --- .../python-modules/dask-expr/default.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/dask-expr/default.nix b/pkgs/development/python-modules/dask-expr/default.nix index 657d588931e7..457a2b5ddf33 100644 --- a/pkgs/development/python-modules/dask-expr/default.nix +++ b/pkgs/development/python-modules/dask-expr/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "dask-expr"; - version = "1.1.0"; + version = "1.1.1"; pyproject = true; disabled = pythonOlder "3.9"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "dask"; repo = "dask-expr"; rev = "refs/tags/v${version}"; - hash = "sha256-yVwaOOjxHVxAhFlEENnjpX8LbJs9MW0OOmwAH5RhPgE="; + hash = "sha256-ltsRKbb/p+qHeNiX0oeZUKbbjPoPxSM4uFnWUFqoqhc="; }; postPatch = '' @@ -32,13 +32,13 @@ buildPythonPackage rec { --replace-fail "versioneer[toml]==0.28" "versioneer[toml]" ''; - nativeBuildInputs = [ + build-system = [ setuptools versioneer wheel ]; - propagatedBuildInputs = [ + dependencies = [ dask pandas pyarrow @@ -53,10 +53,10 @@ buildPythonPackage rec { __darwinAllowLocalNetworking = true; - meta = with lib; { - description = ""; + meta = { + description = "A rewrite of Dask DataFrame that includes query optimization and generally improved organization"; homepage = "https://github.com/dask/dask-expr"; - license = licenses.bsd3; - maintainers = with maintainers; [ GaetanLepage ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ GaetanLepage ]; }; }