python3Packages.wrf-python: add pythonImportsCheck

This commit is contained in:
Fabian Affolter 2022-03-19 20:35:10 +01:00 committed by GitHub
parent ad5808a75a
commit 71f27edcf3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,14 +1,28 @@
{lib, fetchFromGitHub, pythonOlder, buildPythonPackage, gfortran, mock, xarray, wrapt, numpy, netcdf4, setuptools}:
{lib
, fetchFromGitHub
, pythonOlder
, buildPythonPackage
, gfortran
, xarray
, wrapt
, numpy
, netcdf4
, setuptools
, pythonOlder
}:
buildPythonPackage rec {
pname = "wrf-python";
version = "1.3.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "NCAR";
repo = "wrf-python";
rev = version;
sha256 = "sha256-+v4FEK0FVE0oAIb18XDTOInHKfxXyykb1ngk9Uxwf0c=";
hash = "sha256-+v4FEK0FVE0oAIb18XDTOInHKfxXyykb1ngk9Uxwf0c=";
};
propagatedBuildInputs = [
@ -24,9 +38,8 @@ buildPythonPackage rec {
checkInputs = [
netcdf4
] ++ lib.optional (pythonOlder "3.3") mock;
];
doCheck = true;
checkPhase = ''
runHook preCheck
cd ./test/ci_tests
@ -34,10 +47,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 ];
};
}