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