pythonPackages.py-lru-cache: init at 0.1.4

wip/yesman
Chris Ostrouchov 5 years ago
parent 825364c32d
commit 1b60d165bb
No known key found for this signature in database
GPG Key ID: 9ED59B0AB1EAF573
  1. 23
      pkgs/development/python-modules/py-lru-cache/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -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 ];
};
}

@ -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 { };

Loading…
Cancel
Save