2022-04-15 01:41:22 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, pythonOlder
|
|
|
|
, rustPlatform
|
|
|
|
, libiconv
|
2023-05-24 13:37:59 +00:00
|
|
|
, fetchFromGitHub
|
2023-01-11 07:51:40 +00:00
|
|
|
, typing-extensions
|
2022-04-15 01:41:22 +00:00
|
|
|
}:
|
|
|
|
let
|
|
|
|
pname = "polars";
|
2023-05-24 13:37:59 +00:00
|
|
|
version = "0.17.11";
|
|
|
|
rootSource = fetchFromGitHub {
|
|
|
|
owner = "pola-rs";
|
|
|
|
repo = "polars";
|
|
|
|
rev = "refs/tags/py-${version}";
|
|
|
|
hash = "sha256-zNp/77an9daUfHQ+HCaHtZzaq0TT9F+8aH3abrF7+YA=";
|
2022-04-15 01:41:22 +00:00
|
|
|
};
|
|
|
|
in
|
|
|
|
buildPythonPackage {
|
|
|
|
inherit pname version;
|
|
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = rootSource;
|
2023-01-11 07:51:40 +00:00
|
|
|
|
2023-05-24 13:37:59 +00:00
|
|
|
# Cargo.lock file is sometimes behind actual release which throws an error,
|
2023-01-11 07:51:40 +00:00
|
|
|
# thus the `sed` command
|
|
|
|
# Make sure to check that the right substitutions are made when updating the package
|
2022-04-15 01:41:22 +00:00
|
|
|
preBuild = ''
|
|
|
|
cd py-polars
|
2023-05-24 13:37:59 +00:00
|
|
|
#sed -i 's/version = "0.17.11"/version = "${version}"/g' Cargo.lock
|
2022-04-15 01:41:22 +00:00
|
|
|
'';
|
|
|
|
|
2023-05-24 13:37:59 +00:00
|
|
|
cargoDeps = rustPlatform.importCargoLock {
|
|
|
|
lockFile = ./Cargo.lock;
|
|
|
|
outputHashes = {
|
|
|
|
"arrow2-0.17.0" = "sha256-jjrwTP+ZKem9lyrmAWJ+t9cZBkGqAR1VlgNFXDtx1LA=";
|
|
|
|
"jsonpath_lib-0.3.0" = "sha256-NKszYpDGG8VxfZSMbsTlzcMGFHBOUeFojNw4P2wM3qk=";
|
|
|
|
"simd-json-0.7.0" = "sha256-tlz6my4vhUQIArPonJml8zIyk1sbbDSORKp3cmPUUSI=";
|
|
|
|
};
|
2022-04-15 01:41:22 +00:00
|
|
|
};
|
|
|
|
cargoRoot = "py-polars";
|
|
|
|
|
2023-01-11 07:51:40 +00:00
|
|
|
# Revisit this whenever package or Rust is upgraded
|
|
|
|
RUSTC_BOOTSTRAP = 1;
|
|
|
|
|
2023-05-24 13:37:59 +00:00
|
|
|
propagatedBuildInputs = lib.optionals (pythonOlder "3.11") [ typing-extensions ];
|
2023-01-11 07:51:40 +00:00
|
|
|
|
2022-04-15 01:41:22 +00:00
|
|
|
nativeBuildInputs = with rustPlatform; [ cargoSetupHook maturinBuildHook ];
|
|
|
|
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "polars" ];
|
2023-02-02 18:25:31 +00:00
|
|
|
# nativeCheckInputs = [
|
2022-04-15 01:41:22 +00:00
|
|
|
# pytestCheckHook
|
|
|
|
# fixtures
|
|
|
|
# graphviz
|
|
|
|
# matplotlib
|
|
|
|
# networkx
|
|
|
|
# numpy
|
|
|
|
# pydot
|
|
|
|
# ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2023-01-11 07:51:40 +00:00
|
|
|
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
2022-04-15 01:41:22 +00:00
|
|
|
description = "Fast multi-threaded DataFrame library in Rust | Python | Node.js ";
|
|
|
|
homepage = "https://github.com/pola-rs/polars";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ happysalada ];
|
|
|
|
};
|
|
|
|
}
|