1 { lib, buildPythonPackage, fetchPypi
2 , mock, requests, six, urllib3 }:
4 buildPythonPackage rec {
5 pname = "requests-cache";
10 sha256 = "813023269686045f8e01e2289cc1e7e9ae5ab22ddd1e2849a9093ab3ab7270eb";
13 buildInputs = [ mock ];
14 propagatedBuildInputs = [ requests six urllib3 ];
17 description = "Persistent cache for requests library";
18 homepage = "https://pypi.python.org/pypi/requests-cache";
19 license = licenses.bsd3;