python3Packages.python-smarttub: init at 0.0.19

wip/yesman
Fabian Affolter 3 years ago
parent 025b801914
commit 407e5f00f5
  1. 47
      pkgs/development/python-modules/python-smarttub/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,47 @@
{ lib
, aiohttp
, aresponses
, buildPythonPackage
, fetchFromGitHub
, inflection
, pyjwt
, pytest-asyncio
, pytestCheckHook
, python-dateutil
, pythonOlder
}:
buildPythonPackage rec {
pname = "python-smarttub";
version = "0.0.19";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "mdz";
repo = pname;
rev = "v${version}";
sha256 = "01i4pvgvpl7inwhy53c6b34pi5zvfiv2scn507j8jdg5cjs04g80";
};
propagatedBuildInputs = [
aiohttp
inflection
pyjwt
python-dateutil
];
checkInputs = [
aresponses
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [ "smarttub" ];
meta = with lib; {
description = "Python API for SmartTub enabled hot tubs";
homepage = "https://github.com/mdz/python-smarttub";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

@ -6519,6 +6519,8 @@ in {
python-slugify = callPackage ../development/python-modules/python-slugify { };
python-smarttub = callPackage ../development/python-modules/python-smarttub { };
python-snap7 = callPackage ../development/python-modules/python-snap7 {
inherit (pkgs) snap7;
};

Loading…
Cancel
Save