pythonPackages.cachelib: init at 0.1
This commit is contained in:
parent
eccb90a2d9
commit
3c1a747ff1
2 changed files with 20 additions and 0 deletions
18
pkgs/development/python-modules/cachelib/default.nix
Normal file
18
pkgs/development/python-modules/cachelib/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "cachelib";
|
||||||
|
version = "0.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "13dfv0a4ahgx0wmpqv8jqhshim4229p9c1c7gcsra81pkm89p24b";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/pallets/cachelib";
|
||||||
|
description = "Collection of cache libraries in the same API interface";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ gebner ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -319,6 +319,8 @@ in {
|
||||||
|
|
||||||
cachecontrol = callPackage ../development/python-modules/cachecontrol { };
|
cachecontrol = callPackage ../development/python-modules/cachecontrol { };
|
||||||
|
|
||||||
|
cachelib = callPackage ../development/python-modules/cachelib { };
|
||||||
|
|
||||||
cachy = callPackage ../development/python-modules/cachy { };
|
cachy = callPackage ../development/python-modules/cachy { };
|
||||||
|
|
||||||
cdecimal = callPackage ../development/python-modules/cdecimal { };
|
cdecimal = callPackage ../development/python-modules/cdecimal { };
|
||||||
|
|
Loading…
Reference in a new issue