Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, fetchPypi, buildPythonPackage, requests, six }: 2 3buildPythonPackage rec { 4 pname = "requests-file"; 5 version = "1.4.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1yp2jaxg3v86pia0q512dg3hz6s9y5vzdivsgrba1kds05ial14g"; 10 }; 11 12 propagatedBuildInputs = [ requests six ]; 13 14 meta = { 15 homepage = https://github.com/dashea/requests-file; 16 description = "Transport adapter for fetching file:// URLs with the requests python library"; 17 license = lib.licenses.asl20; 18 }; 19 20}