Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 18 lines 476 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "cachelib"; 5 version = "0.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "13dfv0a4ahgx0wmpqv8jqhshim4229p9c1c7gcsra81pkm89p24b"; 10 }; 11 12 meta = with stdenv.lib; { 13 homepage = "https://github.com/pallets/cachelib"; 14 description = "Collection of cache libraries in the same API interface"; 15 license = licenses.bsd3; 16 maintainers = with maintainers; [ gebner ]; 17 }; 18}