pythonPackages.repoze_lru: refactor move to python-modules
This commit is contained in:
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 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -2187,19 +2187,7 @@ in {
|
|||||||
|
|
||||||
ratelimiter = callPackage ../development/python-modules/ratelimiter { };
|
ratelimiter = callPackage ../development/python-modules/ratelimiter { };
|
||||||
|
|
||||||
repoze_lru = buildPythonPackage rec {
|
repoze_lru = callPackage ../development/python-modules/repoze_lru { };
|
||||||
name = "repoze.lru-0.6";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/r/repoze.lru/${name}.tar.gz";
|
|
||||||
sha256 = "0f7a323bf716d3cb6cb3910cd4fccbee0b3d3793322738566ecce163b01bbd31";
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
maintainers = with maintainers; [ garbas domenkozar ];
|
|
||||||
platforms = platforms.all;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
repoze_sphinx_autointerface = buildPythonPackage rec {
|
repoze_sphinx_autointerface = buildPythonPackage rec {
|
||||||
name = "repoze.sphinx.autointerface-0.7.1";
|
name = "repoze.sphinx.autointerface-0.7.1";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user