depot/third_party/nixpkgs/pkgs/development/python-modules/requests-file/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

20 lines
508 B
Nix

{ 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;
};
}