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

22 lines
495 B
Nix
Raw Normal View History

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