1{ lib 2, buildPythonPackage 3, fetchPypi 4, requests 5}: 6 7buildPythonPackage rec { 8 pname = "stookalert"; 9 version = "0.1.4"; 10 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "38c479e2fb7668f9b37aff0f9ffdd7bfd1ee9393528f2d3d36b5911b40da70a1"; 16 }; 17 18 propagatedBuildInputs = [ 19 requests 20 ]; 21 22 # upstream has no tests 23 doCheck = false; 24 25 pythonImportsCheck = [ "stookalert" ]; 26 27 meta = { 28 description = "Python package for the RIVM Stookalert"; 29 homepage = "https://github.com/fwestenberg/stookalert"; 30 license = lib.licenses.mit; 31 maintainers = with lib.maintainers; [ dotlambda ]; 32 }; 33}