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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "1yp2jaxg3v86pia0q512dg3hz6s9y5vzdivsgrba1kds05ial14g";
  };

  propagatedBuildInputs = [ requests six ];

  meta = {
    homepage = "https://github.com/dashea/requests-file";
    description = "Transport adapter for fetching file:// URLs with the requests python library";
    license = lib.licenses.asl20;
  };

}