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