Unverified Commit cb328561 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #196813 from fabaff/python-fullykiosk

parents 4601d5e9 b622a51a
Loading
Loading
Loading
Loading
+39 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+3 −1
Original line number Diff line number Diff line
@@ -1028,7 +1028,8 @@
      afsapi
    ];
    "fully_kiosk" = ps: with ps; [
    ]; # missing inputs: python-fullykiosk
      python-fullykiosk
    ];
    "futurenow" = ps: with ps; [
      pyfnip
    ];
@@ -3801,6 +3802,7 @@
    "fritzbox_callmonitor"
    "fronius"
    "frontend"
    "fully_kiosk"
    "garages_amsterdam"
    "gdacs"
    "generic"
+2 −0
Original line number Diff line number Diff line
@@ -7136,6 +7136,8 @@ in {

  python-flirt = callPackage ../development/python-modules/python-flirt { };

  python-fullykiosk = callPackage ../development/python-modules/python-fullykiosk { };

  python-glanceclient = callPackage ../development/python-modules/python-glanceclient { };

  python-google-nest = callPackage ../development/python-modules/python-google-nest { };