nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at r-updates 39 lines 768 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools-scm, 6 git-versioner, 7 pip, 8}: 9 10buildPythonPackage rec { 11 pname = "pip-system-certs"; 12 version = "5.3"; 13 pyproject = true; 14 15 src = fetchPypi { 16 inherit version; 17 pname = "pip_system_certs"; 18 hash = "sha256-Gci/mVe8zn1pxNvC0LLvE94ZhNU/UKWQEubbutCvZ8Y="; 19 }; 20 21 build-system = [ 22 setuptools-scm 23 git-versioner 24 ]; 25 26 dependencies = [ pip ]; 27 28 pythonImportsCheck = [ 29 "pip_system_certs.wrapt_requests" 30 "pip_system_certs.bootstrap" 31 ]; 32 33 meta = { 34 description = "Live patches pip and requests to use system certs by default"; 35 homepage = "https://gitlab.com/alelec/pip-system-certs"; 36 license = lib.licenses.bsd2; 37 maintainers = with lib.maintainers; [ slotThe ]; 38 }; 39}