depot/third_party/nixpkgs/pkgs/development/python-modules/python-fullykiosk/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

37 lines
851 B
Nix

{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
}:
buildPythonPackage rec {
pname = "python-fullykiosk";
version = "0.0.13";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "cgarwood";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-GElLaSSr/EEhtjgasP2C79kf+HluVPuQ21I8La7IvLs=";
};
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 ];
};
}