Merge pull request #127498 from fabaff/bump-restfly

python3Packages.restfly: 1.3.5 -> 1.4.0
This commit is contained in:
Fabian Affolter 2021-06-20 00:52:33 +02:00 committed by GitHub
commit 2892b7f640
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,13 +11,13 @@
buildPythonPackage rec {
pname = "restfly";
version = "1.3.5";
version = "1.4.0";
src = fetchFromGitHub {
owner = "stevemcgrath";
repo = pname;
rev = version;
sha256 = "0cq07wj6g3kg7i4qyjp3n3pv13k9p4p43rd6kn139wsn1mh8fr56";
sha256 = "0cmx15i57cxqw7naz8nkpqjckd6lpd2vszrkl82hvnajdimcd9wy";
};
propagatedBuildInputs = [
@ -32,6 +32,11 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = [
# Test requires network access
"test_session_ssl_error"
];
pythonImportsCheck = [ "restfly" ];
meta = with lib; {