Loading pkgs/development/python-modules/readmdict/default.nix 0 → 100644 +50 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , pythonOlder , fetchFromGitHub , poetry-core , python-lzo , tkinter , pytestCheckHook }: buildPythonPackage rec { pname = "readmdict"; version = "0.1.1"; pyproject = true; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "ffreemt"; repo = "readmdict"; rev = "v${version}"; hash = "sha256-1/f+o2bVscT3EA8XQyS2hWjhimLRzfIBM6u2O7UqwcA="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ python-lzo tkinter ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "readmdict" ]; meta = with lib; { description = "Read mdx/mdd files (repacking of readmdict from mdict-analysis)"; homepage = "https://github.com/ffreemt/readmdict"; license = licenses.mit; maintainers = with maintainers; [ paveloom ]; }; } pkgs/top-level/all-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -24747,6 +24747,8 @@ with pkgs; readline82 = callPackage ../development/libraries/readline/8.2.nix { }; readmdict = with python3Packages; toPythonApplication readmdict; readosm = callPackage ../development/libraries/readosm { }; recastnavigation = callPackage ../development/libraries/recastnavigation { }; pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -12028,6 +12028,8 @@ self: super: with self; { readlike = callPackage ../development/python-modules/readlike { }; readmdict = callPackage ../development/python-modules/readmdict { }; readme = callPackage ../development/python-modules/readme { }; readme_renderer = callPackage ../development/python-modules/readme_renderer { }; Loading Loading
pkgs/development/python-modules/readmdict/default.nix 0 → 100644 +50 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , pythonOlder , fetchFromGitHub , poetry-core , python-lzo , tkinter , pytestCheckHook }: buildPythonPackage rec { pname = "readmdict"; version = "0.1.1"; pyproject = true; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "ffreemt"; repo = "readmdict"; rev = "v${version}"; hash = "sha256-1/f+o2bVscT3EA8XQyS2hWjhimLRzfIBM6u2O7UqwcA="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ python-lzo tkinter ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "readmdict" ]; meta = with lib; { description = "Read mdx/mdd files (repacking of readmdict from mdict-analysis)"; homepage = "https://github.com/ffreemt/readmdict"; license = licenses.mit; maintainers = with maintainers; [ paveloom ]; }; }
pkgs/top-level/all-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -24747,6 +24747,8 @@ with pkgs; readline82 = callPackage ../development/libraries/readline/8.2.nix { }; readmdict = with python3Packages; toPythonApplication readmdict; readosm = callPackage ../development/libraries/readosm { }; recastnavigation = callPackage ../development/libraries/recastnavigation { };
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -12028,6 +12028,8 @@ self: super: with self; { readlike = callPackage ../development/python-modules/readlike { }; readmdict = callPackage ../development/python-modules/readmdict { }; readme = callPackage ../development/python-modules/readme { }; readme_renderer = callPackage ../development/python-modules/readme_renderer { }; Loading