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

22 lines
497 B
Nix
Raw Normal View History

2018-05-01 13:24:41 +02:00
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "httplib2";
2019-02-16 09:53:24 +01:00
version = "0.12.1";
2018-05-01 13:24:41 +02:00
src = fetchPypi {
inherit pname version;
2019-02-16 09:53:24 +01:00
sha256 = "4ba6b8fd77d0038769bf3c33c9a96a6f752bc4cdf739701fdcaf210121f399d4";
2018-05-01 13:24:41 +02:00
};
2019-02-14 08:37:17 +01:00
# Needs setting up
doCheck = false;
2018-05-01 13:24:41 +02:00
meta = with lib; {
homepage = http://code.google.com/p/httplib2;
description = "A comprehensive HTTP client library";
license = licenses.mit;
maintainers = with maintainers; [ garbas ];
};
}