Merge pull request #229354 from fabaff/datafusion-bump

python311Packages.datafusion: 22.0.0 -> 23.0.0
This commit is contained in:
Fabian Affolter 2023-05-02 07:40:01 +02:00 committed by GitHub
commit 5d61060b80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,21 +32,21 @@ in
buildPythonPackage rec { buildPythonPackage rec {
pname = "datafusion"; pname = "datafusion";
version = "22.0.0"; version = "23.0.0";
format = "pyproject"; format = "pyproject";
src = fetchFromGitHub { src = fetchFromGitHub {
name = "datafusion-source"; name = "datafusion-source";
owner = "apache"; owner = "apache";
repo = "arrow-datafusion-python"; repo = "arrow-datafusion-python";
rev = "22.0.0"; rev = "refs/tags/${version}";
hash = "sha256-EKurQ4h5IOTU3JiGN+MHrDciQUadUrywNRhnv9S/9iY="; hash = "sha256-ndee7aNmoTtZyfl9UUXdNVHkp0GAuJWkyfZJyRrGwn8=";
}; };
cargoDeps = rustPlatform.fetchCargoTarball { cargoDeps = rustPlatform.fetchCargoTarball {
name = "datafusion-cargo-deps"; name = "datafusion-cargo-deps";
inherit src pname version; inherit src pname version;
hash = "sha256-0kfavTFqsQ1Uvg5nQw6VFGlvih8ysOyS2KGT4cTIsVI="; hash = "sha256-eDweEc+7dDbF0WBi6M5XAPIiHRjlYAdf2eNJdwj4D7c=";
}; };
nativeBuildInputs = with rustPlatform; [ nativeBuildInputs = with rustPlatform; [
@ -79,6 +79,7 @@ buildPythonPackage rec {
that uses Apache Arrow as its in-memory format. that uses Apache Arrow as its in-memory format.
''; '';
homepage = "https://arrow.apache.org/datafusion/"; homepage = "https://arrow.apache.org/datafusion/";
changelog = "https://github.com/apache/arrow-datafusion-python/blob/${version}/CHANGELOG.md";
license = with licenses; [ asl20 ]; license = with licenses; [ asl20 ];
maintainers = with maintainers; [ cpcloud ]; maintainers = with maintainers; [ cpcloud ];
}; };