Loading pkgs/development/python-modules/pip-system-certs/default.nix 0 → 100644 +43 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchPypi , setuptools-scm , wheel , git-versioner , wrapt }: buildPythonPackage rec { pname = "pip-system-certs"; version = "4.0"; pyproject = true; src = fetchPypi { inherit version; pname = "pip_system_certs"; hash = "sha256-245qMTiNl5XskTmVffGon6UnT7ZhZEVv0JGl0+lMNQw="; }; nativeBuildInputs = [ setuptools-scm wheel git-versioner ]; propagatedBuildInputs = [ wrapt ]; pythonImportsCheck = [ "pip_system_certs.wrapt_requests" "pip_system_certs.bootstrap" ]; meta = with lib; { description = "Live patches pip and requests to use system certs by default"; homepage = "https://gitlab.com/alelec/pip-system-certs"; license = licenses.bsd2; maintainers = with maintainers; [ slotThe ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -9739,6 +9739,8 @@ self: super: with self; { pip-requirements-parser = callPackage ../development/python-modules/pip-requirements-parser { }; pip-system-certs = callPackage ../development/python-modules/pip-system-certs { }; pipx = callPackage ../development/python-modules/pipx { }; pivy = callPackage ../development/python-modules/pivy { Loading Loading
pkgs/development/python-modules/pip-system-certs/default.nix 0 → 100644 +43 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchPypi , setuptools-scm , wheel , git-versioner , wrapt }: buildPythonPackage rec { pname = "pip-system-certs"; version = "4.0"; pyproject = true; src = fetchPypi { inherit version; pname = "pip_system_certs"; hash = "sha256-245qMTiNl5XskTmVffGon6UnT7ZhZEVv0JGl0+lMNQw="; }; nativeBuildInputs = [ setuptools-scm wheel git-versioner ]; propagatedBuildInputs = [ wrapt ]; pythonImportsCheck = [ "pip_system_certs.wrapt_requests" "pip_system_certs.bootstrap" ]; meta = with lib; { description = "Live patches pip and requests to use system certs by default"; homepage = "https://gitlab.com/alelec/pip-system-certs"; license = licenses.bsd2; maintainers = with maintainers; [ slotThe ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -9739,6 +9739,8 @@ self: super: with self; { pip-requirements-parser = callPackage ../development/python-modules/pip-requirements-parser { }; pip-system-certs = callPackage ../development/python-modules/pip-system-certs { }; pipx = callPackage ../development/python-modules/pipx { }; pivy = callPackage ../development/python-modules/pivy { Loading