1{ lib, buildPythonPackage, fetchurl }: 2 3buildPythonPackage rec { 4 name = "pylru-${version}"; 5 version = "1.0.9"; 6 7 src = fetchurl { 8 url = "mirror://pypi/p/pylru/${name}.tar.gz"; 9 sha256 = "0b0pq0l7xv83dfsajsc49jcxzc99kb9jfx1a1dlx22hzcy962dvi"; 10 }; 11 12 meta = with lib; { 13 homepage = https://github.com/jlhutch/pylru; 14 description = "A least recently used (LRU) cache implementation"; 15 license = licenses.gpl2; 16 maintainers = with maintainers; [ abbradar ]; 17 }; 18}