Unverified Commit 2e546199 authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python310packages.pyuca: init at 1.2

parent 7be2ba70
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, unittestCheckHook
}:

buildPythonPackage rec {
  pname = "pyuca";
  version = "1.2";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "jtauber";
    repo = "pyuca";
    rev = "v${version}";
    hash = "sha256-KIWk+/o1MX5J9cO7xITvjHrYg0NdgdTetOzfGVwAI/4=";
  };

  pythonImportsCheck = [
    "pyuca"
  ];

  nativeCheckInputs = [
    unittestCheckHook
  ];

  meta = with lib; {
    description = "A Python implementation of the Unicode Collation Algorithm";
    homepage = "https://github.com/jtauber/pyuca";
    license = licenses.mit;
    maintainers = with maintainers; [ hexa ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -7665,6 +7665,8 @@ self: super: with self; {

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

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

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

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