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

19 lines
467 B
Nix
Raw Normal View History

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