nixpkgs/pkgs/development/python-modules/httplib2/default.nix

22 lines
495 B
Nix
Raw Normal View History

2018-05-01 04:24:41 -07:00
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "httplib2";
2020-06-05 23:47:12 -07:00
version = "0.18.1";
2018-05-01 04:24:41 -07:00
src = fetchPypi {
inherit pname version;
2020-06-05 23:47:12 -07:00
sha256 = "8af66c1c52c7ffe1aa5dc4bcd7c769885254b0756e6e69f953c7f0ab49a70ba3";
2018-05-01 04:24:41 -07:00
};
2019-02-13 23:37:17 -08:00
# Needs setting up
doCheck = false;
2018-05-01 04:24:41 -07:00
meta = with lib; {
homepage = "https://github.com/httplib2/httplib2";
2018-05-01 04:24:41 -07:00
description = "A comprehensive HTTP client library";
license = licenses.mit;
maintainers = with maintainers; [ ];
2018-05-01 04:24:41 -07:00
};
}