3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/requests-toolbelt/default.nix
Jamie McClymont 62df72857c pythonPackages.requests-toolbelt: disable time-dependant tests
Tests include certificates and fail because they are expired.

Upstream issue exists but has been ignored: https://github.com/requests/toolbelt/issues/306

closes #147776
2021-11-30 22:15:59 +13:00

39 lines
956 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, requests
, betamax
, mock
, pytest
, pyopenssl
}:
buildPythonPackage rec {
pname = "requests-toolbelt";
version = "0.9.1";
src = fetchPypi {
inherit pname version;
sha256 = "968089d4584ad4ad7c171454f0a5c6dac23971e9472521ea3b6d49d610aa6fc0";
};
checkInputs = [ pyopenssl betamax mock pytest ];
propagatedBuildInputs = [ requests ];
checkPhase = ''
# disabled tests access the network
py.test tests -k "not test_no_content_length_header \
and not test_read_file \
and not test_reads_file_from_url_wrapper \
and not test_x509_der \
and not test_x509_pem"
'';
meta = {
description = "A toolbelt of useful classes and functions to be used with python-requests";
homepage = "http://toolbelt.rtfd.org";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ matthiasbeyer ];
};
}