Files
nixpkgs/pkgs/development/python-modules/meteocalc/default.nix
2025-05-25 03:23:49 +02:00

34 lines
693 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "meteocalc";
version = "1.1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "malexer";
repo = "meteocalc";
rev = version;
hash = "sha256-WuIW6hROQkjMfbCLUouECIrp4s6oCd2/N79hsrTbVTk=";
};
nativeCheckInputs = [ 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 ];
};
}