pythonPackages.py-lru-cache: init at 0.1.4

This commit is contained in:
Chris Ostrouchov 2019-05-07 08:53:03 -04:00
parent 825364c32d
commit 1b60d165bb
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "py-lru-cache";
version = "0.1.4";
src = fetchPypi {
inherit version;
pname = "py_lru_cache";
sha256 = "1w3a8l3ckl1zz0f2vlfrawl9a402r458p7xzhy4sgq8k9rl37pq2";
};
meta = with lib; {
description = "An in-memory LRU cache for python";
homepage = https://github.com/stucchio/Python-LRU-cache;
license = licenses.gpl3;
maintainers = [ maintainers.costrouc ];
};
}

View file

@ -652,6 +652,8 @@ in {
py-cpuinfo = callPackage ../development/python-modules/py-cpuinfo { };
py-lru-cache = callPackage ../development/python-modules/py-lru-cache { };
pydbus = callPackage ../development/python-modules/pydbus { };
pydocstyle = callPackage ../development/python-modules/pydocstyle { };