Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 21 lines 456 B view raw
1{ lib 2, fetchPypi 3, buildPythonPackage 4}: 5 6buildPythonPackage rec { 7 pname = "certifi"; 8 version = "2019.11.28"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "25b64c7da4cd7479594d035c08c2d809eb4aab3a26e5a990ea98cc450c320f1f"; 13 }; 14 15 meta = { 16 homepage = http://certifi.io/; 17 description = "Python package for providing Mozilla's CA Bundle"; 18 license = lib.licenses.isc; 19 maintainers = with lib.maintainers; [ koral ]; 20 }; 21}