1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-28 20:16:41 +03:00
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";
2020-06-06 08:47:12 +02:00
version = "0.18.1";
2018-05-01 13:24:41 +02:00
src = fetchPypi {
inherit pname version;
2020-06-06 08:47:12 +02:00
sha256 = "8af66c1c52c7ffe1aa5dc4bcd7c769885254b0756e6e69f953c7f0ab49a70ba3";
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
};
}