Unverified Commit 82540cbb authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #295223 from ViZiD/khanaa

python311Packages.khanaa: init at 0.0.6
parents a29a5a60 a1ed97c2
Loading
Loading
Loading
Loading
+46 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub

, pythonOlder

, unittestCheckHook

, setuptools
}:

buildPythonPackage rec {
  pname = "khanaa";
  version = "0.0.6";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "cakimpei";
    repo = "khanaa";
    rev = "refs/tags/v${version}";
    hash = "sha256-BzxNHYMkp5pdJYQ80EI5jlP654yX9woW7wz1jArCln4=";
  };

  build-system = [
    setuptools
  ];

  nativeCheckInputs = [
    unittestCheckHook
  ];

  unittestFlagsArray = [ "-s" "tests" ];

  pythonImportsCheck = [ "khanaa" ];

  meta = with lib;
    {
      description = "A tool to make spelling Thai more convenient";
      homepage = "https://github.com/cakimpei/khanaa";
      changelog = "https://github.com/cakimpei/khanaa/blob/main/CHANGELOG.md";
      license = licenses.mit;
      maintainers = with maintainers; [ vizid ];
    };
}
+2 −0
Original line number Diff line number Diff line
@@ -6253,6 +6253,8 @@ self: super: with self; {
    inherit (pkgs) keyutils;
  };
  khanaa = callPackage ../development/python-modules/khanaa {};
  kicad = toPythonModule (pkgs.kicad.override {
    python3 = python;
  }).src;