mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +03:00
python312Packages.xarray-datatree: remove
See: https://github.com/xarray-contrib/datatree/compare/refs/tags/v0.0.14...v0.0.15 Changelog: https://github.com/xarray-contrib/datatree/releases/tag/v0.0.15
This commit is contained in:
parent
60d18ed756
commit
339bd97d09
4 changed files with 1 additions and 63 deletions
|
@ -9,7 +9,6 @@
|
||||||
python-dateutil,
|
python-dateutil,
|
||||||
spatial-image,
|
spatial-image,
|
||||||
xarray,
|
xarray,
|
||||||
xarray-datatree,
|
|
||||||
zarr,
|
zarr,
|
||||||
dask-image,
|
dask-image,
|
||||||
fsspec,
|
fsspec,
|
||||||
|
@ -43,7 +42,6 @@ buildPythonPackage rec {
|
||||||
python-dateutil
|
python-dateutil
|
||||||
spatial-image
|
spatial-image
|
||||||
xarray
|
xarray
|
||||||
xarray-datatree
|
|
||||||
zarr
|
zarr
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -1,59 +0,0 @@
|
||||||
{
|
|
||||||
lib,
|
|
||||||
buildPythonPackage,
|
|
||||||
fetchFromGitHub,
|
|
||||||
pythonOlder,
|
|
||||||
check-manifest,
|
|
||||||
setuptools,
|
|
||||||
setuptools-scm,
|
|
||||||
packaging,
|
|
||||||
pytestCheckHook,
|
|
||||||
xarray,
|
|
||||||
zarr,
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
|
||||||
pname = "datatree";
|
|
||||||
version = "0.0.14";
|
|
||||||
pyproject = true;
|
|
||||||
|
|
||||||
disabled = pythonOlder "3.9";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "xarray-contrib";
|
|
||||||
repo = "datatree";
|
|
||||||
rev = "refs/tags/v${version}";
|
|
||||||
hash = "sha256-C6+WcHc2+sftJ5Yyh/9TTIHhAEwhAqSsSkaDwtq7J90=";
|
|
||||||
};
|
|
||||||
|
|
||||||
build-system = [
|
|
||||||
check-manifest
|
|
||||||
setuptools
|
|
||||||
setuptools-scm
|
|
||||||
];
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
packaging
|
|
||||||
xarray
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeCheckInputs = [
|
|
||||||
pytestCheckHook
|
|
||||||
zarr
|
|
||||||
];
|
|
||||||
|
|
||||||
pythonImportsCheck = [ "datatree" ];
|
|
||||||
|
|
||||||
disabledTests = [
|
|
||||||
# output formatting issue, likely due to underlying library version difference:
|
|
||||||
"test_diff_node_data"
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Tree-like hierarchical data structure for xarray";
|
|
||||||
homepage = "https://xarray-datatree.readthedocs.io";
|
|
||||||
changelog = "https://github.com/xarray-contrib/datatree/releases/tag/v${version}";
|
|
||||||
license = licenses.asl20;
|
|
||||||
maintainers = with maintainers; [ bcdarwin ];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -701,6 +701,7 @@ mapAliases ({
|
||||||
WSME = wsme; # added 2023-02-19
|
WSME = wsme; # added 2023-02-19
|
||||||
x11_hash = x11-hash; # added 2023-11-05
|
x11_hash = x11-hash; # added 2023-11-05
|
||||||
xapp = python-xapp; # added 2024-07-19
|
xapp = python-xapp; # added 2024-07-19
|
||||||
|
xarray-datatree = throw "Datatree has been merged upstream into pydata/xarray, and released as of xarray version 2024.10.0."; # added 2024-11-02
|
||||||
xenomapper = throw "xenomapper was moved to pkgs.xenomapper"; # added 2021-12-31
|
xenomapper = throw "xenomapper was moved to pkgs.xenomapper"; # added 2021-12-31
|
||||||
XlsxWriter = xlsxwriter; # added 2023-02-19
|
XlsxWriter = xlsxwriter; # added 2023-02-19
|
||||||
xsser = "xsser has been removed because it was unmaintained and relies on a archived project"; # added 2024-07-27
|
xsser = "xsser has been removed because it was unmaintained and relies on a archived project"; # added 2024-07-27
|
||||||
|
|
|
@ -17723,8 +17723,6 @@ self: super: with self; {
|
||||||
|
|
||||||
xarray-dataclasses = callPackage ../development/python-modules/xarray-dataclasses { };
|
xarray-dataclasses = callPackage ../development/python-modules/xarray-dataclasses { };
|
||||||
|
|
||||||
xarray-datatree = callPackage ../development/python-modules/xarray-datatree { };
|
|
||||||
|
|
||||||
xarray-einstats = callPackage ../development/python-modules/xarray-einstats { };
|
xarray-einstats = callPackage ../development/python-modules/xarray-einstats { };
|
||||||
|
|
||||||
xattr = callPackage ../development/python-modules/xattr { };
|
xattr = callPackage ../development/python-modules/xattr { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue