Merge pull request #148050 from mweinelt/python/pyoctoprintapi

This commit is contained in:
Martin Weinelt 2021-12-12 22:12:24 +01:00 committed by GitHub
commit ea11136279
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 51 additions and 1 deletions

View File

@ -0,0 +1,47 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
# propagated
, aiohttp
# tests
, pytest-asyncio
, pytestCheckHook
}:
let
pname = "pyoctoprintapi";
version = "0.1.7";
in
buildPythonPackage {
inherit pname version;
format = "setuptools";
src = fetchFromGitHub {
owner = "rfleming71";
repo = pname;
rev = "v${version}";
hash = "sha256-XAMHQ7n03e10hFcPIUqyCDlRk2uO8dX8Iq0mdY7wRGE=";
};
propagatedBuildInputs = [
aiohttp
];
pythonImportsCheck = [
"pyoctoprintapi"
];
checkInputs = [
pytest-asyncio
pytestCheckHook
];
meta = with lib; {
description = "Simple async wrapper around the Octoprint API";
homepage = "https://github.com/rfleming71/pyoctoprintapi";
license = licenses.mit;
maintainers= with maintainers; [ hexa ];
};
}

View File

@ -597,7 +597,7 @@
"nzbget" = ps: with ps; [ ]; # missing inputs: pynzbgetapi
"oasa_telematics" = ps: with ps; [ ]; # missing inputs: oasatelematics
"obihai" = ps: with ps; [ pyobihai ];
"octoprint" = ps: with ps; [ ]; # missing inputs: pyoctoprintapi
"octoprint" = ps: with ps; [ pyoctoprintapi ];
"oem" = ps: with ps; [ oemthermostat ];
"ohmconnect" = ps: with ps; [ defusedxml ];
"ombi" = ps: with ps; [ pyombi ];

View File

@ -658,6 +658,7 @@ in with py.pkgs; buildPythonApplication rec {
"number"
"nws"
"nx584"
"octoprint"
"omnilogic"
"onboarding"
"ondilo_ico"

View File

@ -6942,6 +6942,8 @@ in {
tesseract = pkgs.tesseract4;
};
pyoctoprintapi = callPackage ../development/python-modules/pyoctoprintapi { };
pyodbc = callPackage ../development/python-modules/pyodbc { };
pyogg = callPackage ../development/python-modules/pyogg { };