depot/third_party/nixpkgs/pkgs/development/python-modules/meteocalc/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

33 lines
687 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 = pname;
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 ];
};
}