Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 21 lines 455 B view raw
1{ lib 2, fetchPypi 3, buildPythonPackage 4}: 5 6buildPythonPackage rec { 7 pname = "certifi"; 8 version = "2019.6.16"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "945e3ba63a0b9f577b1395204e13c3a231f9bc0223888be653286534e5873695"; 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}