From 91b869efe31e79b1035a0ab59e8c65603df8a256 Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Thu, 30 May 2019 15:26:00 +0200 Subject: [PATCH] pythonPackages.pylru: 1.1.0 -> 1.2.0 --- pkgs/development/python-modules/pylru/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pylru/default.nix b/pkgs/development/python-modules/pylru/default.nix index b0fd4f4003a4..8ca565834d4a 100644 --- a/pkgs/development/python-modules/pylru/default.nix +++ b/pkgs/development/python-modules/pylru/default.nix @@ -2,15 +2,15 @@ buildPythonPackage rec { pname = "pylru"; - version = "1.1.0"; + version = "1.2.0"; src = fetchPypi { inherit pname version; - sha256 = "e03a3d354eb8fdfa11638698e8a1f06cd3b3a214ebc0a120c603a79290d9ebec"; + sha256 = "492f934bb98dc6c8b2370c02c95c65516ddc08c8f64d27f70087eb038621d297"; }; meta = with lib; { - homepage = https://github.com/jlhutch/pylru; + homepage = "https://github.com/jlhutch/pylru"; description = "A least recently used (LRU) cache implementation"; license = licenses.gpl2; maintainers = with maintainers; [ abbradar ];