Unverified Commit b2f07653 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #285101 from hulr/airium

parents 4e0128e5 2a2b7fb8
Loading
Loading
Loading
Loading
+42 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitLab
, setuptools
, pytestCheckHook
, beautifulsoup4
}:

buildPythonPackage rec {
  pname = "airium";
  version = "0.2.6";
  pyproject = true;

  src = fetchFromGitLab {
    owner = "kamichal";
    repo = "airium";
    rev = "v${version}";
    hash = "sha256-qAU+rmj2ZHw7KdxVvRyponcPiRcyENfDyW1y9JTiwsY=";
  };

  propagatedBuildInputs = [
    setuptools
  ];

  nativeCheckInputs = [
    pytestCheckHook
    beautifulsoup4
  ];

  # tests require internet access, broken in sandbox
  disabledTests = [
    "test_get_bad_content_type"
    "test_translate_remote_file"
  ];

  meta = with lib; {
    description = "Bidirectional HTML-python translator";
    homepage = "https://gitlab.com/kamichal/airium";
    license = licenses.mit;
    maintainers = with maintainers; [ hulr ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -445,6 +445,8 @@ self: super: with self; {
  aiozeroconf = callPackage ../development/python-modules/aiozeroconf { };
  airium = callPackage ../development/python-modules/airium { };
  airly = callPackage ../development/python-modules/airly { };
  airthings-ble = callPackage ../development/python-modules/airthings-ble { };