blob: 0948c877315723bf77980b47df68b6e1a4eec8c9 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
requests,
}:
buildPythonPackage rec {
pname = "stookalert";
version = "0.1.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "38c479e2fb7668f9b37aff0f9ffdd7bfd1ee9393528f2d3d36b5911b40da70a1";
};
propagatedBuildInputs = [ requests ];
# upstream has no tests
doCheck = false;
pythonImportsCheck = [ "stookalert" ];
meta = {
description = "Python package for the RIVM Stookalert";
homepage = "https://github.com/fwestenberg/stookalert";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|