python310Packages.meteocalc: init at 1.1.0

This commit is contained in:
Fabian Affolter 2022-08-07 16:33:38 +02:00
parent 17c854c4f0
commit 6e1e785335
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "meteocalc";
version = "1.1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "malexer";
repo = pname;
rev = version;
hash = "sha256-WuIW6hROQkjMfbCLUouECIrp4s6oCd2/N79hsrTbVTk=";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"meteocalc"
];
meta = with lib; {
description = "Module for calculation of meteorological variables";
homepage = "https://github.com/malexer/meteocalc";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -5431,6 +5431,8 @@ in {
meteoalertapi = callPackage ../development/python-modules/meteoalertapi { };
meteocalc = callPackage ../development/python-modules/meteocalc { };
meteofrance-api = callPackage ../development/python-modules/meteofrance-api { };
mezzanine = callPackage ../development/python-modules/mezzanine { };