Merge pull request #196813 from fabaff/python-fullykiosk
This commit is contained in:
commit
cb3285613f
3 changed files with 44 additions and 1 deletions
|
@ -0,0 +1,39 @@
|
||||||
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "python-fullykiosk";
|
||||||
|
version = "0.0.11";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "cgarwood";
|
||||||
|
repo = pname;
|
||||||
|
rev = "refs/tags/${version}";
|
||||||
|
sha256 = "sha256-Fndf9OOy3JLVTzHwfRzYrF/Khuhf9BMT6I+ze375p70=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
];
|
||||||
|
|
||||||
|
# Module has no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"fullykiosk"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Wrapper for Fully Kiosk Browser REST interface";
|
||||||
|
homepage = "https://github.com/cgarwood/python-fullykiosk";
|
||||||
|
license = with licenses; [ asl20 ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1028,7 +1028,8 @@
|
||||||
afsapi
|
afsapi
|
||||||
];
|
];
|
||||||
"fully_kiosk" = ps: with ps; [
|
"fully_kiosk" = ps: with ps; [
|
||||||
]; # missing inputs: python-fullykiosk
|
python-fullykiosk
|
||||||
|
];
|
||||||
"futurenow" = ps: with ps; [
|
"futurenow" = ps: with ps; [
|
||||||
pyfnip
|
pyfnip
|
||||||
];
|
];
|
||||||
|
@ -3801,6 +3802,7 @@
|
||||||
"fritzbox_callmonitor"
|
"fritzbox_callmonitor"
|
||||||
"fronius"
|
"fronius"
|
||||||
"frontend"
|
"frontend"
|
||||||
|
"fully_kiosk"
|
||||||
"garages_amsterdam"
|
"garages_amsterdam"
|
||||||
"gdacs"
|
"gdacs"
|
||||||
"generic"
|
"generic"
|
||||||
|
|
|
@ -7136,6 +7136,8 @@ in {
|
||||||
|
|
||||||
python-flirt = callPackage ../development/python-modules/python-flirt { };
|
python-flirt = callPackage ../development/python-modules/python-flirt { };
|
||||||
|
|
||||||
|
python-fullykiosk = callPackage ../development/python-modules/python-fullykiosk { };
|
||||||
|
|
||||||
python-glanceclient = callPackage ../development/python-modules/python-glanceclient { };
|
python-glanceclient = callPackage ../development/python-modules/python-glanceclient { };
|
||||||
|
|
||||||
python-google-nest = callPackage ../development/python-modules/python-google-nest { };
|
python-google-nest = callPackage ../development/python-modules/python-google-nest { };
|
||||||
|
|
Loading…
Reference in a new issue