python3Packages.requests-file: fix tests

This commit is contained in:
Jonathan Ringer 2020-06-20 09:42:45 -07:00 committed by Jon
parent a1af12dcdf
commit aefee8624d

View file

@ -1,4 +1,4 @@
{ lib, fetchPypi, buildPythonPackage, requests, six }:
{ lib, fetchPypi, buildPythonPackage, pytestCheckHook, requests, six }:
buildPythonPackage rec {
pname = "requests-file";
@ -11,6 +11,8 @@ buildPythonPackage rec {
propagatedBuildInputs = [ requests six ];
checkInputs = [ pytestCheckHook ];
meta = {
homepage = "https://github.com/dashea/requests-file";
description = "Transport adapter for fetching file:// URLs with the requests python library";