Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 21 lines 495 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "httplib2"; 5 version = "0.15.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "a5f914f18f99cb9541660454a159e3b3c63241fc3ab60005bb88d97cc7a4fb58"; 10 }; 11 12 # Needs setting up 13 doCheck = false; 14 15 meta = with lib; { 16 homepage = "https://github.com/httplib2/httplib2"; 17 description = "A comprehensive HTTP client library"; 18 license = licenses.mit; 19 maintainers = with maintainers; [ ]; 20 }; 21}