Unverified Commit e649bb88 authored by Pyrox's avatar Pyrox
Browse files

python3Packages.aioaquacell: init at 0.2.0

parent b63730c7
Loading
Loading
Loading
Loading
+48 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -157,6 +157,8 @@ self: super: with self; {
  aioapns = callPackage ../development/python-modules/aioapns { };
  aioaquacell = callPackage ../development/python-modules/aioaquacell { };
  aiocron = callPackage ../development/python-modules/aiocron { };
  ailment = callPackage ../development/python-modules/ailment { };