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";
|
2019-05-30 15:26:00 +02:00
|
|
|
version = "1.2.0";
|
2018-02-25 18:26:54 +01:00
|
|
|
|
2018-06-23 15:27:58 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-05-30 15:26:00 +02:00
|
|
|
sha256 = "492f934bb98dc6c8b2370c02c95c65516ddc08c8f64d27f70087eb038621d297";
|
2018-02-25 18:26:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
2019-05-30 15:26:00 +02:00
|
|
|
homepage = "https://github.com/jlhutch/pylru";
|
2018-02-25 18:26:54 +01:00
|
|
|
description = "A least recently used (LRU) cache implementation";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|