mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
python3Packages.stookalert: init at 0.1.4
This commit is contained in:
parent
58f707cf86
commit
7aa71eb389
33
pkgs/development/python-modules/stookalert/default.nix
Normal file
33
pkgs/development/python-modules/stookalert/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -9737,6 +9737,8 @@ in {
|
|||
|
||||
stone = callPackage ../development/python-modules/stone { };
|
||||
|
||||
stookalert = callPackage ../development/python-modules/stookalert { };
|
||||
|
||||
stopit = callPackage ../development/python-modules/stopit { };
|
||||
|
||||
strategies = callPackage ../development/python-modules/strategies { };
|
||||
|
|
Loading…
Reference in a new issue