python: wrf-python : 1.3.1.1 -> 1.3.2

authored by mhaselsteiner and committed by Jon 263ee30a d17a25d1

+5 -4
+5 -4
pkgs/development/python-modules/wrf-python/default.nix
··· 1 - {lib, fetchFromGitHub, pythonOlder, buildPythonPackage, gfortran, mock, xarray, wrapt, numpy, netcdf4}: 2 3 buildPythonPackage rec { 4 pname = "wrf-python"; 5 - version = "1.3.1.1"; 6 7 src = fetchFromGitHub { 8 owner = "NCAR"; 9 repo = "wrf-python"; 10 rev = version; 11 - sha256 = "12mm7x1r5md6x28vmwyh6k655pgsv6knj8ycmjbxxk8bk7qsj74h"; 12 }; 13 14 propagatedBuildInputs = [ 15 wrapt 16 numpy 17 xarray 18 ]; 19 ··· 39 license = lib.licenses.asl20; 40 maintainers = with lib.maintainers; [ mhaselsteiner ]; 41 }; 42 - }
··· 1 + {lib, fetchFromGitHub, pythonOlder, buildPythonPackage, gfortran, mock, xarray, wrapt, numpy, netcdf4, setuptools}: 2 3 buildPythonPackage rec { 4 pname = "wrf-python"; 5 + version = "1.3.2"; 6 7 src = fetchFromGitHub { 8 owner = "NCAR"; 9 repo = "wrf-python"; 10 rev = version; 11 + sha256 = "1rklkki54z5392cpwwy78bnmsy2ghc187l3j7nv0rzn6jk5bvyi7"; 12 }; 13 14 propagatedBuildInputs = [ 15 wrapt 16 numpy 17 + setuptools 18 xarray 19 ]; 20 ··· 40 license = lib.licenses.asl20; 41 maintainers = with lib.maintainers; [ mhaselsteiner ]; 42 }; 43 + }