71 lines
1.4 KiB
Nix
71 lines
1.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, isPy27
|
|
, mock
|
|
, pyparsing
|
|
, pytest-forked
|
|
, pytest-randomly
|
|
, pytest-timeout
|
|
, pytest-xdist
|
|
, pytestCheckHook
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "httplib2";
|
|
version = "0.19.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-e0Mq9AVJEWQ9GEtYFXk2fMIs7GtAUsyJN6XheqAnD3I=";
|
|
};
|
|
|
|
patches = [
|
|
# fix test_inject_space
|
|
(fetchpatch {
|
|
url = "https://github.com/httplib2/httplib2/commit/08d6993b69256fbc6c0b1c615c24910803c4d610.patch";
|
|
sha256 = "0kbd1skn58m20kfkh4qzd66g9bvj31xlkbhsg435dkk4qz6l3yn3";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
sed -i "/--cov/d" setup.cfg
|
|
'';
|
|
|
|
propagatedBuildInputs = [ pyparsing ];
|
|
|
|
pythonImportsCheck = [ "httplib2" ];
|
|
|
|
# Don't run tests for Python 2.7
|
|
doCheck = !isPy27;
|
|
|
|
checkInputs = [
|
|
mock
|
|
pytest-forked
|
|
pytest-randomly
|
|
pytest-timeout
|
|
pytest-xdist
|
|
six
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = lib.optionals (stdenv.isDarwin) [
|
|
# fails with HTTP 408 Request Timeout, instead of expected 200 OK
|
|
"test_timeout_subsequent"
|
|
];
|
|
|
|
pytestFlagsArray = [ "--ignore python2" ];
|
|
|
|
meta = with lib; {
|
|
description = "A comprehensive HTTP client library";
|
|
homepage = "https://httplib2.readthedocs.io";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|