3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/httplib2/default.nix
c0bw3b 69b393ace5 Treewide: update some problematic homepages
These URLs are reported as problematic by Repology.
It could be a permanent redirection
or the page does not exist anymore
2019-12-08 10:21:29 -08:00

22 lines
495 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "httplib2";
version = "0.14.0";
src = fetchPypi {
inherit pname version;
sha256 = "34537dcdd5e0f2386d29e0e2c6d4a1703a3b982d34c198a5102e6e5d6194b107";
};
# Needs setting up
doCheck = false;
meta = with lib; {
homepage = "https://github.com/httplib2/httplib2";
description = "A comprehensive HTTP client library";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}