blob: 2cb8f1f8144ac7f4fc6f1c771b791c46db023cbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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 ];
};
}
|