Merge pull request #164875 from r-ryantm/auto-update/python310Packages.wrf-python

python310Packages.wrf-python: 1.3.2.6 -> 1.3.3
This commit is contained in:
Fabian Affolter 2022-03-19 21:09:17 +01:00 committed by GitHub
commit 631c8aed03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,14 +1,27 @@
{lib, fetchFromGitHub, pythonOlder, buildPythonPackage, gfortran, mock, xarray, wrapt, numpy, netcdf4, setuptools}:
{lib
, fetchFromGitHub
, pythonOlder
, buildPythonPackage
, gfortran
, xarray
, wrapt
, numpy
, netcdf4
, setuptools
}:
buildPythonPackage rec {
pname = "wrf-python";
version = "1.3.2.6";
version = "1.3.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "NCAR";
repo = "wrf-python";
rev = version;
sha256 = "046kflai71r7xrmdw6jn0ifn5656wj9gpnwlgxkx430dgk7zbc2y";
hash = "sha256-+v4FEK0FVE0oAIb18XDTOInHKfxXyykb1ngk9Uxwf0c=";
};
propagatedBuildInputs = [
@ -24,9 +37,8 @@ buildPythonPackage rec {
checkInputs = [
netcdf4
] ++ lib.optional (pythonOlder "3.3") mock;
];
doCheck = true;
checkPhase = ''
runHook preCheck
cd ./test/ci_tests
@ -34,10 +46,14 @@ buildPythonPackage rec {
runHook postCheck
'';
meta = {
pythonImportsCheck = [
"wrf"
];
meta = with lib; {
description = "WRF postprocessing library for Python";
homepage = "http://wrf-python.rtfd.org";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ mhaselsteiner ];
license = licenses.asl20;
maintainers = with maintainers; [ mhaselsteiner ];
};
}