9c37f5aeb6
Without this patch, this is what happened: ```sh ➤ nix-build -A python38Packages.httplib2 error: flask-sqlalchemy-3.0.3 not supported for interpreter python3.8 (use '--show-trace' to show detailed location information) ``` That missing dependency was just for testing, but it doesn't make much sense to remove a package just because it can't be tested. I just changed it so that it only runs checks when running at python >= 3.9, and now httplib2 is available for Python 3.8 again.
80 lines
1.6 KiB
Nix
80 lines
1.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, cryptography
|
|
, fetchFromGitHub
|
|
, isPy27
|
|
, mock
|
|
, pyparsing
|
|
, pytest-forked
|
|
, pytest-randomly
|
|
, pytest-timeout
|
|
, pytestCheckHook
|
|
, pythonAtLeast
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "httplib2";
|
|
version = "0.21.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-1Pl+l28J7crfO2UY/9/D019IzOHWOwjR+UvVEHICTqU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pyparsing
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
cryptography
|
|
mock
|
|
pytest-forked
|
|
pytest-randomly
|
|
pytest-timeout
|
|
six
|
|
pytestCheckHook
|
|
];
|
|
|
|
# Don't run tests for older Pythons
|
|
doCheck = pythonAtLeast "3.9";
|
|
|
|
postPatch = ''
|
|
sed -i "/--cov/d" setup.cfg
|
|
'';
|
|
|
|
disabledTests = [
|
|
# ValueError: Unable to load PEM file.
|
|
# https://github.com/httplib2/httplib2/issues/192#issuecomment-993165140
|
|
"test_client_cert_password_verified"
|
|
|
|
# improper pytest marking
|
|
"test_head_301"
|
|
"test_303"
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
# fails with "ConnectionResetError: [Errno 54] Connection reset by peer"
|
|
"test_connection_close"
|
|
# fails with HTTP 408 Request Timeout, instead of expected 200 OK
|
|
"test_timeout_subsequent"
|
|
"test_connection_close"
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
"--ignore python2"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"httplib2"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A comprehensive HTTP client library";
|
|
homepage = "https://github.com/httplib2/httplib2";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|