summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-03-19 21:09:17 +0100
committerGitHub <noreply@github.com>2022-03-19 21:09:17 +0100
commit631c8aed0394b419aca5ba6245d4f0b489fdb289 (patch)
treedf682f16d57e6a867529be4d7d57651e016d8e4e
parentce15662808d8ea43e09b6843a0faa9f80e2673a2 (diff)
parent5bc6e362e6ac62e2349190333b475325f6e90a8d (diff)
downloadnixpkgs-631c8aed0394b419aca5ba6245d4f0b489fdb289.tar
nixpkgs-631c8aed0394b419aca5ba6245d4f0b489fdb289.tar.gz
nixpkgs-631c8aed0394b419aca5ba6245d4f0b489fdb289.tar.bz2
nixpkgs-631c8aed0394b419aca5ba6245d4f0b489fdb289.tar.lz
nixpkgs-631c8aed0394b419aca5ba6245d4f0b489fdb289.tar.xz
nixpkgs-631c8aed0394b419aca5ba6245d4f0b489fdb289.tar.zst
nixpkgs-631c8aed0394b419aca5ba6245d4f0b489fdb289.zip
Merge pull request #164875 from r-ryantm/auto-update/python310Packages.wrf-python
python310Packages.wrf-python: 1.3.2.6 -> 1.3.3
-rw-r--r--pkgs/development/python-modules/wrf-python/default.nix32
1 files changed, 24 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/wrf-python/default.nix b/pkgs/development/python-modules/wrf-python/default.nix
index 94234b2626e..14e81df65fc 100644
--- a/pkgs/development/python-modules/wrf-python/default.nix
+++ b/pkgs/development/python-modules/wrf-python/default.nix
@@ -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 ];
   };
 }