2018-06-23 15:27:58 +02:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
2018-02-25 18:26:54 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2018-06-23 15:27:58 +02:00
|
|
|
pname = "pylru";
|
2018-02-25 18:26:54 +01:00
|
|
|
version = "1.0.9";
|
|
|
|
|
2018-06-23 15:27:58 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-02-25 18:26:54 +01:00
|
|
|
sha256 = "0b0pq0l7xv83dfsajsc49jcxzc99kb9jfx1a1dlx22hzcy962dvi";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = https://github.com/jlhutch/pylru;
|
|
|
|
description = "A least recently used (LRU) cache implementation";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|