blob: 9ed9d185df18163366ed95da7dc711bbcbb41fc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "meteocalc";
version = "1.1.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "malexer";
repo = "meteocalc";
rev = version;
hash = "sha256-WuIW6hROQkjMfbCLUouECIrp4s6oCd2/N79hsrTbVTk=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "meteocalc" ];
meta = {
description = "Module for calculation of meteorological variables";
homepage = "https://github.com/malexer/meteocalc";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|