Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 495 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "httplib2"; 5 version = "0.18.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "8af66c1c52c7ffe1aa5dc4bcd7c769885254b0756e6e69f953c7f0ab49a70ba3"; 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}