Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 26 lines 505 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, tox 5}: 6 7buildPythonPackage rec { 8 pname = "diskcache"; 9 version = "4.0.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "7c20b58ed07d03bbfba793f823d1fc27a61e590371fe6011fa1319a25c028cd1"; 14 }; 15 16 checkInputs = [ 17 tox 18 ]; 19 20 meta = with lib; { 21 description = "Disk and file backed persistent cache"; 22 homepage = https://www.grantjenks.com/docs/diskcache/; 23 license = licenses.asl20; 24 maintainers = [ maintainers.costrouc ]; 25 }; 26}