nixpkgs/pkgs/development/python-modules/httplib2/default.nix
2019-10-27 16:26:44 +01:00

22 lines
490 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "httplib2";
version = "0.14.0";
src = fetchPypi {
inherit pname version;
sha256 = "34537dcdd5e0f2386d29e0e2c6d4a1703a3b982d34c198a5102e6e5d6194b107";
};
# Needs setting up
doCheck = false;
meta = with lib; {
homepage = http://code.google.com/p/httplib2;
description = "A comprehensive HTTP client library";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}