depot/third_party/nixpkgs/pkgs/development/python-modules/pyduke-energy/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

52 lines
1,009 B
Nix

{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, jsonpickle
, paho-mqtt
, pytest-asyncio
, pytest-timeout
, pytestCheckHook
, python-dateutil
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyduke-energy";
version = "1.0.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mjmeli";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-g+s9YaVFOCKaBGR5o9cPk4kcIW4BffFHTtmDNE8f/zE=";
};
propagatedBuildInputs = [
aiohttp
jsonpickle
paho-mqtt
python-dateutil
];
nativeCheckInputs = [
pytest-asyncio
pytest-timeout
pytestCheckHook
];
pythonImportsCheck = [
"pyduke_energy"
];
meta = with lib; {
description = "Python module for the Duke Energy API";
homepage = "https://github.com/mjmeli/pyduke-energy";
changelog = "https://github.com/mjmeli/pyduke-energy/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}