12 buildPythonPackage rec {
13 pname = "requests-file";
17 disabled = pythonOlder "3.8";
19 src = fetchFromGitHub {
21 repo = "requests-file";
23 hash = "sha256-JtdtE44yiw2mLMZ0bJv0QiGWb7f8ywPLF7+BUufh/g4=";
31 dependencies = [ requests ];
33 nativeCheckInputs = [ pytestCheckHook ];
35 pythonImportsCheck = [ "requests_file" ];
38 description = "Transport adapter for fetching file:// URLs with the requests python library";
39 homepage = "https://github.com/dashea/requests-file";
40 changelog = "https://github.com/dashea/requests-file/blob/${version}/CHANGES.rst";
41 license = licenses.asl20;