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

22 lines
495 B
Nix
Raw Normal View History

2018-05-01 13:24:41 +02:00
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "httplib2";
2019-12-19 20:31:13 +01:00
version = "0.15.0";
2018-05-01 13:24:41 +02:00
src = fetchPypi {
inherit pname version;
2019-12-19 20:31:13 +01:00
sha256 = "a5f914f18f99cb9541660454a159e3b3c63241fc3ab60005bb88d97cc7a4fb58";
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 = "https://github.com/httplib2/httplib2";
2018-05-01 13:24:41 +02:00
description = "A comprehensive HTTP client library";
license = licenses.mit;
maintainers = with maintainers; [ ];
2018-05-01 13:24:41 +02:00
};
}