aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/requests-file/default.nix
blob: 374627a1bb9a2ab13142a14824d000a2d28bd352 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, fetchPypi, buildPythonPackage, pytestCheckHook, requests, six }:

buildPythonPackage rec {
  pname   = "requests-file";
  version = "1.5.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "07d74208d3389d01c38ab89ef403af0cfec63957d53a0081d8eca738d0247d8e";
  };

  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";
    license = lib.licenses.asl20;
  };

}