blob: 061fc8ca402351248662faaea169ec2384e48ebb (
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
31
32
33
34
35
36
37
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
requests,
xmltodict,
}:
buildPythonPackage rec {
pname = "meteoalertapi";
version = "0.3.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "rolfberkenbosch";
repo = "meteoalert-api";
tag = "v${version}";
hash = "sha256-Imb4DVcNB3QiVSCLCI+eKpfl73aMn4NIItQVf7p0H+E=";
};
propagatedBuildInputs = [
requests
xmltodict
];
# Tests require network access
doCheck = false;
pythonImportsCheck = [ "meteoalertapi" ];
meta = {
description = "Python wrapper for MeteoAlarm.org";
homepage = "https://github.com/rolfberkenbosch/meteoalert-api";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|