ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / requests-file / default.nix
blobd8cd9d81c94dd815a5e43c5482f47262aee2047b
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , pytestCheckHook
5 , requests
6 , six
7 }:
9 buildPythonPackage rec {
10   pname = "requests-file";
11   version = "1.5.1";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-B9dCCNM4nQHDirie9AOvDP7GOVfVOgCB2OynONAkfY4=";
17   };
19   propagatedBuildInputs = [
20     requests
21     six
22   ];
24   checkInputs = [
25     pytestCheckHook
26   ];
28   pythonImportsCheck = [
29     "requests_file"
30   ];
32   meta = with lib; {
33     description = "Transport adapter for fetching file:// URLs with the requests python library";
34     homepage = "https://github.com/dashea/requests-file";
35     license = licenses.asl20;
36     maintainers = with maintainers; [ ];
37   };