1{
2 lib,
3 aiohttp,
4 buildPythonPackage,
5 fetchFromGitHub,
6 pythonOlder,
7}:
8
9buildPythonPackage rec {
10 pname = "python-fullykiosk";
11 version = "0.0.14";
12 format = "setuptools";
13
14 disabled = pythonOlder "3.7";
15
16 src = fetchFromGitHub {
17 owner = "cgarwood";
18 repo = "python-fullykiosk";
19 tag = version;
20 hash = "sha256-+JBgBi05zNgIt2cXlHjFPI6nBFR7SpMCWIQHKtnZeX4=";
21 };
22
23 propagatedBuildInputs = [ aiohttp ];
24
25 # Module has no tests
26 doCheck = false;
27
28 pythonImportsCheck = [ "fullykiosk" ];
29
30 meta = with lib; {
31 description = "Wrapper for Fully Kiosk Browser REST interface";
32 homepage = "https://github.com/cgarwood/python-fullykiosk";
33 changelog = "https://github.com/cgarwood/python-fullykiosk/releases/tag/${version}";
34 license = with licenses; [ asl20 ];
35 maintainers = with maintainers; [ fab ];
36 };
37}