about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authormhaselsteiner <magdalena.haselsteiner@gmx.at>2018-10-16 23:02:57 +0200
committermhaselsteiner <magdalena.haselsteiner@gmx.at>2019-01-30 22:51:27 +0100
commit6dda7841bb9422ab989e8ca220ca70af840112f1 (patch)
treee5bc45110cce75de2b4e67ff5f7ce309e461aff3 /pkgs/development/python-modules
parent18ad447b6fdfffaf461bc3a8192e71a0b839ef83 (diff)
downloadnixlib-6dda7841bb9422ab989e8ca220ca70af840112f1.tar
nixlib-6dda7841bb9422ab989e8ca220ca70af840112f1.tar.gz
nixlib-6dda7841bb9422ab989e8ca220ca70af840112f1.tar.bz2
nixlib-6dda7841bb9422ab989e8ca220ca70af840112f1.tar.lz
nixlib-6dda7841bb9422ab989e8ca220ca70af840112f1.tar.xz
nixlib-6dda7841bb9422ab989e8ca220ca70af840112f1.tar.zst
nixlib-6dda7841bb9422ab989e8ca220ca70af840112f1.zip
pythonPackages.wrf-python: init at 1.3.1.1
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/wrf-python/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/wrf-python/default.nix b/pkgs/development/python-modules/wrf-python/default.nix
new file mode 100644
index 000000000000..8e9358dd473a
--- /dev/null
+++ b/pkgs/development/python-modules/wrf-python/default.nix
@@ -0,0 +1,41 @@
+{lib, fetchFromGitHub, python, pythonOlder, buildPythonPackage, gfortran, mock, xarray, wrapt, numpy, netcdf4}:
+
+buildPythonPackage rec {
+  pname = "wrf-python";
+  version = "1.3.1.1";
+
+  src = fetchFromGitHub {
+    owner = "NCAR";
+    repo = "wrf-python";
+    rev = version;
+    sha256 = "12mm7x1r5md6x28vmwyh6k655pgsv6knj8ycmjbxxk8bk7qsj74h";
+  };
+
+  propagatedBuildInputs = [
+    wrapt
+    numpy
+    xarray
+  ];
+  buildInputs = [
+    gfortran
+  ] ++ lib.optional (pythonOlder "3.3") mock;
+  
+  checkInputs = [
+    netcdf4
+  ];
+
+  doCheck = true;
+  checkPhase = ''
+    runHook preCheck
+    cd ./test/ci_tests
+    python utests.py
+    runHook postCheck
+  '';
+
+  meta = {
+    description = "WRF postprocessing library for Python";
+    homepage = http://wrf-python.rtfd.org;
+    license = lib.licenses.asl20;
+    maintainers = with lib.maintainers; [ mhaselsteiner ];
+	};
+}
\ No newline at end of file