depot/third_party/nixpkgs/pkgs/development/python-modules/aioaquacell/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

48 lines
956 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
aiobotocore,
aiohttp,
attr,
aws-request-signer,
botocore,
requests-aws4auth,
pycognito,
}:
buildPythonPackage rec {
pname = "aioaquacell";
version = "0.2.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-n2kPD1t5d/nf43rB0q1hNNYdHeaBiadsFWTmu1bYN1A=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
aiobotocore
attr
aws-request-signer
botocore
requests-aws4auth
pycognito
];
pythonImportsCheck = [ "aioaquacell" ];
doCheck = false;
meta = {
changelog = "https://github.com/Jordi1990/aioaquacell/releases/tag/v${version}";
description = "Asynchronous library to retrieve details of your Aquacell water softener device.";
homepage = "https://github.com/Jordi1990/aioaquacell";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ pyrox0 ];
};
}