3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/httplib2/default.nix
2020-06-06 08:34:54 +02:00

22 lines
495 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "httplib2";
version = "0.17.4";
src = fetchPypi {
inherit pname version;
sha256 = "1e9340ecf0187a621bdcfb407c32e04e8e09fc6ab28b050efa38f20eae0e975f";
};
# Needs setting up
doCheck = false;
meta = with lib; {
homepage = "https://github.com/httplib2/httplib2";
description = "A comprehensive HTTP client library";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}