python3Packages.pysmartapp: init at 0.3.3

This commit is contained in:
Fabian Affolter 2021-04-24 22:47:33 +02:00 committed by Jonathan Ringer
parent 7b79425d84
commit bce7201f72
2 changed files with 42 additions and 2 deletions

View file

@ -0,0 +1,38 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, httpsig
, pytest-asyncio
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pysmartapp";
version = "0.3.3";
src = fetchFromGitHub {
owner = "andrewsayre";
repo = pname;
rev = version;
sha256 = "03wk44siqxl15pa46x5vkg4q0mnga34ir7qn897576z2ivbx7awh";
};
propagatedBuildInputs = [
httpsig
];
checkInputs = [
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [ "pysmartapp" ];
meta = with lib; {
description = "Python implementation to work with SmartApp lifecycle events";
homepage = "https://github.com/andrewsayre/pysmartapp";
changelog = "https://github.com/andrewsayre/pysmartapp/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -6518,10 +6518,12 @@ in {
pysmappee = callPackage ../development/python-modules/pysmappee { };
pysmb = callPackage ../development/python-modules/pysmb { };
pysmart-smartx = callPackage ../development/python-modules/pysmart-smartx { };
pysmartapp = callPackage ../development/python-modules/pysmartapp { };
pysmb = callPackage ../development/python-modules/pysmb { };
pysmbc = callPackage ../development/python-modules/pysmbc { };
pysmf = callPackage ../development/python-modules/pysmf { };