Loading pkgs/development/python-modules/dawg2-python/default.nix 0 → 100644 +51 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, # build-system poetry-core, # dependencies typing-extensions, # tests pytestCheckHook, }: buildPythonPackage rec { pname = "dawg2-python"; version = "0.9.0"; pyproject = true; src = fetchFromGitHub { owner = "pymorphy2-fork"; repo = "DAWG-Python"; tag = version; hash = "sha256-45k7QmozbMt7qYdDFRSL5JDeEtqdMHBoEXXQkLDoGfE="; }; build-system = [ poetry-core ]; dependencies = [ typing-extensions ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "dawg_python" ]; meta = { description = "Pure-python reader for DAWGs created by dawgdic C++ library or DAWG Python extension. Fork of https://github.com/pytries/DAWG-Python"; homepage = "https://github.com/pymorphy2-fork/DAWG-Python"; changelog = "https://github.com/pymorphy2-fork/DAWG-Python/blob/${src.tag}/CHANGES.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ doronbehar ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -3450,6 +3450,8 @@ self: super: with self; { dawg-python = callPackage ../development/python-modules/dawg-python { }; dawg2-python = callPackage ../development/python-modules/dawg2-python { }; dazl = callPackage ../development/python-modules/dazl { }; db-dtypes = callPackage ../development/python-modules/db-dtypes { }; Loading Loading
pkgs/development/python-modules/dawg2-python/default.nix 0 → 100644 +51 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, # build-system poetry-core, # dependencies typing-extensions, # tests pytestCheckHook, }: buildPythonPackage rec { pname = "dawg2-python"; version = "0.9.0"; pyproject = true; src = fetchFromGitHub { owner = "pymorphy2-fork"; repo = "DAWG-Python"; tag = version; hash = "sha256-45k7QmozbMt7qYdDFRSL5JDeEtqdMHBoEXXQkLDoGfE="; }; build-system = [ poetry-core ]; dependencies = [ typing-extensions ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "dawg_python" ]; meta = { description = "Pure-python reader for DAWGs created by dawgdic C++ library or DAWG Python extension. Fork of https://github.com/pytries/DAWG-Python"; homepage = "https://github.com/pymorphy2-fork/DAWG-Python"; changelog = "https://github.com/pymorphy2-fork/DAWG-Python/blob/${src.tag}/CHANGES.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ doronbehar ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -3450,6 +3450,8 @@ self: super: with self; { dawg-python = callPackage ../development/python-modules/dawg-python { }; dawg2-python = callPackage ../development/python-modules/dawg2-python { }; dazl = callPackage ../development/python-modules/dazl { }; db-dtypes = callPackage ../development/python-modules/db-dtypes { }; Loading