depot/third_party/nixpkgs/pkgs/development/python-modules/meteoalertapi/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

37 lines
768 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, requests
, xmltodict
}:
buildPythonPackage rec {
pname = "meteoalertapi";
version = "0.3.0";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "rolfberkenbosch";
repo = "meteoalert-api";
rev = "v${version}";
hash = "sha256-uB2nza9fj7vOWixL4WEQX1N3i2Y80zQPM3x1+gRtg+w=";
};
propagatedBuildInputs = [
requests
xmltodict
];
# Tests require network access
doCheck = false;
pythonImportsCheck = [ "meteoalertapi" ];
meta = with lib; {
description = "Python wrapper for MeteoAlarm.org";
homepage = "https://github.com/rolfberkenbosch/meteoalert-api";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}