12 buildPythonPackage rec {
13 pname = "df-diskcache";
17 src = fetchFromGitHub {
19 repo = "df-diskcache";
21 hash = "sha256-s+sqEPXw6tbEz9mnG+qeUSF6BmDssYhaDYOmraFaRbw=";
24 nativeBuildInputs = [ setuptools ];
26 propagatedBuildInputs = [
33 # Needed for Permission denied: '/homeless-shelter'
34 export HOME=$(mktemp -d)
37 nativeCheckInputs = [ pytestCheckHook ];
38 pythonImportsCheck = [ "dfdiskcache" ];
41 description = "Python library for caching pandas.DataFrame objects to local disk";
42 homepage = "https://github.com/thombashi/df-diskcache";
43 license = licenses.mit;
44 maintainers = with maintainers; [ henrirosten ];