Loading pkgs/development/python-modules/pystardict/default.nix 0 → 100644 +39 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchFromGitHub , setuptools , setuptools-scm , six , pytestCheckHook }: buildPythonPackage rec { pname = "pystardict"; version = "0.8"; format = "setuptools"; src = fetchFromGitHub { owner = "lig"; repo = "pystardict"; rev = version; hash = "sha256-YrZpIhyxfA3G7rP0SJ+EvzGwAXlne80AYilkj6cIDnA="; }; env.SETUPTOOLS_SCM_PRETEND_VERSION = version; propagatedBuildInputs = [ six ]; nativeBuildInputs = [ setuptools setuptools-scm ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "pystardict" ]; meta = with lib; { description = "Library for manipulating StarDict dictionaries from within Python"; homepage = "https://github.com/lig/pystardict"; license = licenses.gpl3Plus; maintainers = with maintainers; [ thornycrackers ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -9638,6 +9638,8 @@ self: super: with self; { pystache = callPackage ../development/python-modules/pystache { }; pystardict = callPackage ../development/python-modules/pystardict { }; pystemd = callPackage ../development/python-modules/pystemd { inherit (pkgs) systemd; }; Loading Loading
pkgs/development/python-modules/pystardict/default.nix 0 → 100644 +39 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchFromGitHub , setuptools , setuptools-scm , six , pytestCheckHook }: buildPythonPackage rec { pname = "pystardict"; version = "0.8"; format = "setuptools"; src = fetchFromGitHub { owner = "lig"; repo = "pystardict"; rev = version; hash = "sha256-YrZpIhyxfA3G7rP0SJ+EvzGwAXlne80AYilkj6cIDnA="; }; env.SETUPTOOLS_SCM_PRETEND_VERSION = version; propagatedBuildInputs = [ six ]; nativeBuildInputs = [ setuptools setuptools-scm ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "pystardict" ]; meta = with lib; { description = "Library for manipulating StarDict dictionaries from within Python"; homepage = "https://github.com/lig/pystardict"; license = licenses.gpl3Plus; maintainers = with maintainers; [ thornycrackers ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -9638,6 +9638,8 @@ self: super: with self; { pystache = callPackage ../development/python-modules/pystache { }; pystardict = callPackage ../development/python-modules/pystardict { }; pystemd = callPackage ../development/python-modules/pystemd { inherit (pkgs) systemd; }; Loading