python3Packages.webthing: init at 0.15.0

This commit is contained in:
Fabian Affolter 2021-01-05 13:39:45 +01:00
parent ef5cb37c30
commit c2f1dfa90e
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, ifaddr
, jsonschema
, pyee
, tornado
, zeroconf
}:
buildPythonPackage rec {
pname = "webthing";
version = "0.15.0";
src = fetchFromGitHub {
owner = "WebThingsIO";
repo = "webthing-python";
rev = "v${version}";
sha256 = "06264rwchy4qmbn7lv7m00qg864y7aw3rngcqqcr9nvaqz4rb0fg";
};
propagatedBuildInputs = [
ifaddr
jsonschema
pyee
tornado
zeroconf
];
# no tests are present
doCheck = false;
pythonImportsCheck = [ "webthing" ];
meta = with lib; {
description = "Python implementation of a Web Thing server";
homepage = "https://github.com/WebThingsIO/webthing-python";
license = with licenses; [ mpl20 ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -7902,6 +7902,8 @@ in {
webtest = callPackage ../development/python-modules/webtest { };
webthing = callPackage ../development/python-modules/webthing { };
werkzeug = callPackage ../development/python-modules/werkzeug { };
west = callPackage ../development/python-modules/west { };