3
0
Fork 0
forked from mirrors/nixpkgs

python.pkgs.requests-file: init at 1.4.3

This commit is contained in:
rnhmjoj 2018-09-11 23:51:25 +02:00
parent a25dcb6607
commit 99dad9d7f0
No known key found for this signature in database
GPG key ID: 91BE884FBA4B591A

View file

@ -0,0 +1,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;
};
}