mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
pythonPackages.repoze_lru: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
e49ffc0434
commit
162db7094f
22
pkgs/development/python-modules/repoze_lru/default.nix
Normal file
22
pkgs/development/python-modules/repoze_lru/default.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "repoze.lru";
|
||||
version = "0.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0f7a323bf716d3cb6cb3910cd4fccbee0b3d3793322738566ecce163b01bbd31";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A tiny LRU cache implementation and decorator";
|
||||
homepage = http://www.repoze.org/;
|
||||
license = licenses.bsd0;
|
||||
maintainers = with maintainers; [ garbas domenkozar ];
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user