depot/third_party/nixpkgs/pkgs/development/python-modules/python-fullykiosk/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

37 lines
851 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 ];
};
}