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