Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, buildPythonPackage, fetchPypi, isPy27 }: 2 3buildPythonPackage rec { 4 pname = "cachetools"; 5 version = "4.1.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "bbaa39c3dede00175df2dc2b03d0cf18dd2d32a7de7beb68072d13043c9edb20"; 10 }; 11 12 meta = with stdenv.lib; { 13 description = "Extensible memoizing collections and decorators"; 14 homepage = "https://github.com/tkem/cachetools"; 15 license = licenses.mit; 16 }; 17}