841d9c7fc1
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
35 lines
746 B
Nix
35 lines
746 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, aiodns
|
|
, aiohttp
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "forecast-solar";
|
|
version = "1.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "home-assistant-libs";
|
|
repo = "forecast_solar";
|
|
rev = version;
|
|
sha256 = "1kqzr1ypvdjw0zvac4spb6xdd2qpms9h8nr6vf0w9qx756ir0f95";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aiodns
|
|
aiohttp
|
|
];
|
|
|
|
# no unit tests implemented
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "forecast_solar" ];
|
|
|
|
meta = with lib; {
|
|
description = "Asynchronous Python client for getting forecast solar information";
|
|
homepage = "https://github.com/home-assistant-libs/forecast_solar";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|