forked from mirrors/nixpkgs
b0361a4ab7
Diff: https://github.com/cgarwood/python-fullykiosk/compare/refs/tags/0.0.11...0.0.12 Changelog: https://github.com/cgarwood/python-fullykiosk/releases/tag/0.0.12
41 lines
856 B
Nix
41 lines
856 B
Nix
{ lib
|
|
, aiohttp
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-fullykiosk";
|
|
version = "0.0.12";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cgarwood";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-88PsJ1qAlOpxDtZyQe8pFC2Y3ygg3boiPxmYad58Fm8=";
|
|
};
|
|
|
|
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";
|
|
changelog = "https://github.com/cgarwood/python-fullykiosk/releases/tag/${version}";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|