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