depot/third_party/nixpkgs/pkgs/development/python-modules/meteoalertapi/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

39 lines
811 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
requests,
xmltodict,
}:
buildPythonPackage rec {
pname = "meteoalertapi";
version = "0.3.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "rolfberkenbosch";
repo = "meteoalert-api";
rev = "refs/tags/v${version}";
hash = "sha256-Imb4DVcNB3QiVSCLCI+eKpfl73aMn4NIItQVf7p0H+E=";
};
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 ];
};
}