about summary refs log tree commit diff
path: root/pkgs/development/python-modules/wrf-python
diff options
context:
space:
mode:
authormhaselsteiner <magdalena.haselsteiner@gmx.at>2019-11-16 22:45:12 +0100
committerJon <jonringer@users.noreply.github.com>2019-11-18 12:39:51 -0800
commit263ee30a7024d97a7639b735344b1fe51a94a80d (patch)
tree481a33b250891b2f807d9bfc85c56e43179e1e86 /pkgs/development/python-modules/wrf-python
parentd17a25d1909be1129e64c8b0418585178d2fe9e3 (diff)
python: wrf-python : 1.3.1.1 -> 1.3.2
Diffstat (limited to 'pkgs/development/python-modules/wrf-python')
-rw-r--r--pkgs/development/python-modules/wrf-python/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/wrf-python/default.nix b/pkgs/development/python-modules/wrf-python/default.nix
index 8d1443837cde6..29c1f8dfa797a 100644
--- a/pkgs/development/python-modules/wrf-python/default.nix
+++ b/pkgs/development/python-modules/wrf-python/default.nix
@@ -1,19 +1,20 @@
-{lib, fetchFromGitHub, pythonOlder, buildPythonPackage, gfortran, mock, xarray, wrapt, numpy, netcdf4}:
+{lib, fetchFromGitHub, pythonOlder, buildPythonPackage, gfortran, mock, xarray, wrapt, numpy, netcdf4, setuptools}:
 
 buildPythonPackage rec {
   pname = "wrf-python";
-  version = "1.3.1.1";
+  version = "1.3.2";
 
   src = fetchFromGitHub {
     owner = "NCAR";
     repo = "wrf-python";
     rev = version;
-    sha256 = "12mm7x1r5md6x28vmwyh6k655pgsv6knj8ycmjbxxk8bk7qsj74h";
+    sha256 = "1rklkki54z5392cpwwy78bnmsy2ghc187l3j7nv0rzn6jk5bvyi7";
   };
 
   propagatedBuildInputs = [
     wrapt
     numpy
+    setuptools
     xarray
   ];
 
@@ -39,4 +40,4 @@ buildPythonPackage rec {
     license = lib.licenses.asl20;
     maintainers = with lib.maintainers; [ mhaselsteiner ];
 	};
-}
\ No newline at end of file
+}