evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / pip-system-certs / default.nix
blob0476aed5621234f58a1c3f626ea96573db4b64bd
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools-scm,
6   wheel,
7   git-versioner,
8   wrapt,
9 }:
11 buildPythonPackage rec {
12   pname = "pip-system-certs";
13   version = "4.0";
14   pyproject = true;
16   src = fetchPypi {
17     inherit version;
18     pname = "pip_system_certs";
19     hash = "sha256-245qMTiNl5XskTmVffGon6UnT7ZhZEVv0JGl0+lMNQw=";
20   };
22   nativeBuildInputs = [
23     setuptools-scm
24     wheel
25     git-versioner
26   ];
28   propagatedBuildInputs = [ wrapt ];
30   pythonImportsCheck = [
31     "pip_system_certs.wrapt_requests"
32     "pip_system_certs.bootstrap"
33   ];
35   meta = with lib; {
36     description = "Live patches pip and requests to use system certs by default";
37     homepage = "https://gitlab.com/alelec/pip-system-certs";
38     license = licenses.bsd2;
39     maintainers = with maintainers; [ slotThe ];
40   };