summary refs log tree commit diff
path: root/pkgs/development/python-modules/certifi
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2021-06-19 11:03:32 +0200
committerRobert Schütz <dev@schuetz-co.de>2021-07-03 14:49:49 +0200
commitada27b88e23eef9d59f52a30abea0ea02523a3f8 (patch)
tree8a30372dfe4eda88227db6480566bc250284c8f6 /pkgs/development/python-modules/certifi
parent43b257365c2c73fc31421e9b28dde1166d75506a (diff)
downloadnixpkgs-ada27b88e23eef9d59f52a30abea0ea02523a3f8.tar
nixpkgs-ada27b88e23eef9d59f52a30abea0ea02523a3f8.tar.gz
nixpkgs-ada27b88e23eef9d59f52a30abea0ea02523a3f8.tar.bz2
nixpkgs-ada27b88e23eef9d59f52a30abea0ea02523a3f8.tar.lz
nixpkgs-ada27b88e23eef9d59f52a30abea0ea02523a3f8.tar.xz
nixpkgs-ada27b88e23eef9d59f52a30abea0ea02523a3f8.tar.zst
nixpkgs-ada27b88e23eef9d59f52a30abea0ea02523a3f8.zip
python2Packages.certifi: init at 2019.11.28
We use the sources from 2019.11.28 to build, but inherit the cert bundle
from the maintained Python3-only version of certifi.

Co-authored-by: adisbladis <adisbladis@gmail.com>
Diffstat (limited to 'pkgs/development/python-modules/certifi')
-rw-r--r--pkgs/development/python-modules/certifi/python2.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/certifi/python2.nix b/pkgs/development/python-modules/certifi/python2.nix
new file mode 100644
index 00000000000..adc9594d69d
--- /dev/null
+++ b/pkgs/development/python-modules/certifi/python2.nix
@@ -0,0 +1,34 @@
+{ lib
+, fetchPypi
+, buildPythonPackage
+, python3
+}:
+
+let
+  inherit (python3.pkgs) certifi;
+
+in buildPythonPackage rec {
+  pname = "certifi";
+  version = "2019.11.28";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "25b64c7da4cd7479594d035c08c2d809eb4aab3a26e5a990ea98cc450c320f1f";
+  };
+
+  postPatch = ''
+    cp ${certifi.src}/certifi/cacert.pem certifi/cacert.pem
+  '';
+
+  pythonImportsCheck = [ "certifi" ];
+
+  # no tests implemented
+  doCheck = false;
+
+  meta = with lib; {
+    homepage = "https://certifi.io/";
+    description = "Python package for providing Mozilla's CA Bundle";
+    license = licenses.isc;
+    maintainers = with maintainers; [ ]; # NixOps team
+  };
+}