mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
python311Packages.cf-xarray: 0.9.3 -> 0.9.4
Diff: https://github.com/xarray-contrib/cf-xarray/compare/refs/tags/v0.9.3...v0.9.4 Changelog: https://github.com/xarray-contrib/cf-xarray/releases/tag/v0.9.4
This commit is contained in:
parent
e8f58650ae
commit
14d352de57
@ -1,26 +1,31 @@
|
|||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
dask,
|
pythonOlder,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
|
|
||||||
|
# build-system
|
||||||
|
setuptools,
|
||||||
|
setuptools-scm,
|
||||||
|
xarray,
|
||||||
|
|
||||||
|
# optional-dependencies
|
||||||
matplotlib,
|
matplotlib,
|
||||||
pint,
|
pint,
|
||||||
pooch,
|
pooch,
|
||||||
pytestCheckHook,
|
|
||||||
pythonOlder,
|
|
||||||
regex,
|
regex,
|
||||||
rich,
|
rich,
|
||||||
scipy,
|
|
||||||
setuptools,
|
|
||||||
setuptools-scm,
|
|
||||||
shapely,
|
shapely,
|
||||||
wheel,
|
|
||||||
xarray,
|
# checks
|
||||||
|
dask,
|
||||||
|
pytestCheckHook,
|
||||||
|
scipy,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "cf-xarray";
|
pname = "cf-xarray";
|
||||||
version = "0.9.3";
|
version = "0.9.4";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.9";
|
disabled = pythonOlder "3.9";
|
||||||
@ -29,13 +34,12 @@ buildPythonPackage rec {
|
|||||||
owner = "xarray-contrib";
|
owner = "xarray-contrib";
|
||||||
repo = "cf-xarray";
|
repo = "cf-xarray";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-7eL8z2r1+X80QqiL/5XzfA+Jlx+WuKvuxIWG4YLCwfg=";
|
hash = "sha256-zio00ki86DZqWtGnVseDR28He4DW1jjKdwfsxRwFDfg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [
|
build-system = [
|
||||||
setuptools
|
setuptools
|
||||||
setuptools-scm
|
setuptools-scm
|
||||||
wheel
|
|
||||||
xarray
|
xarray
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user