mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.py-lru-cache: init at 0.1.4
This commit is contained in:
parent
825364c32d
commit
1b60d165bb
2 changed files with 25 additions and 0 deletions
23
pkgs/development/python-modules/py-lru-cache/default.nix
Normal file
23
pkgs/development/python-modules/py-lru-cache/default.nix
Normal 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 ];
|
||||
};
|
||||
|
||||
}
|
|
@ -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…
Reference in a new issue