Merge pull request #148050 from mweinelt/python/pyoctoprintapi
This commit is contained in:
commit
ea11136279
4 changed files with 51 additions and 1 deletions
47
pkgs/development/python-modules/pyoctoprintapi/default.nix
Normal file
47
pkgs/development/python-modules/pyoctoprintapi/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -597,7 +597,7 @@
|
||||||
"nzbget" = ps: with ps; [ ]; # missing inputs: pynzbgetapi
|
"nzbget" = ps: with ps; [ ]; # missing inputs: pynzbgetapi
|
||||||
"oasa_telematics" = ps: with ps; [ ]; # missing inputs: oasatelematics
|
"oasa_telematics" = ps: with ps; [ ]; # missing inputs: oasatelematics
|
||||||
"obihai" = ps: with ps; [ pyobihai ];
|
"obihai" = ps: with ps; [ pyobihai ];
|
||||||
"octoprint" = ps: with ps; [ ]; # missing inputs: pyoctoprintapi
|
"octoprint" = ps: with ps; [ pyoctoprintapi ];
|
||||||
"oem" = ps: with ps; [ oemthermostat ];
|
"oem" = ps: with ps; [ oemthermostat ];
|
||||||
"ohmconnect" = ps: with ps; [ defusedxml ];
|
"ohmconnect" = ps: with ps; [ defusedxml ];
|
||||||
"ombi" = ps: with ps; [ pyombi ];
|
"ombi" = ps: with ps; [ pyombi ];
|
||||||
|
|
|
@ -658,6 +658,7 @@ in with py.pkgs; buildPythonApplication rec {
|
||||||
"number"
|
"number"
|
||||||
"nws"
|
"nws"
|
||||||
"nx584"
|
"nx584"
|
||||||
|
"octoprint"
|
||||||
"omnilogic"
|
"omnilogic"
|
||||||
"onboarding"
|
"onboarding"
|
||||||
"ondilo_ico"
|
"ondilo_ico"
|
||||||
|
|
|
@ -6942,6 +6942,8 @@ in {
|
||||||
tesseract = pkgs.tesseract4;
|
tesseract = pkgs.tesseract4;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pyoctoprintapi = callPackage ../development/python-modules/pyoctoprintapi { };
|
||||||
|
|
||||||
pyodbc = callPackage ../development/python-modules/pyodbc { };
|
pyodbc = callPackage ../development/python-modules/pyodbc { };
|
||||||
|
|
||||||
pyogg = callPackage ../development/python-modules/pyogg { };
|
pyogg = callPackage ../development/python-modules/pyogg { };
|
||||||
|
|
Loading…
Reference in a new issue