nixpkgs/pkgs/development/python-modules/pylru/default.nix

19 lines
469 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "pylru";
2019-05-30 13:26:00 +00:00
version = "1.2.0";
src = fetchPypi {
inherit pname version;
2019-05-30 13:26:00 +00:00
sha256 = "492f934bb98dc6c8b2370c02c95c65516ddc08c8f64d27f70087eb038621d297";
};
meta = with lib; {
2019-05-30 13:26:00 +00:00
homepage = "https://github.com/jlhutch/pylru";
description = "A least recently used (LRU) cache implementation";
license = licenses.gpl2;
maintainers = with maintainers; [ abbradar ];
};
}