python3Packages.web-cache: init at 1.1.0
This commit is contained in:
parent
b51b5a104b
commit
eb7235a768
|
@ -0,0 +1,23 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, isPy3k }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "web_cache";
|
||||
version = "1.1.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1d8f1s3i0s3h1jqvjq6cp639hhbbpxvyq7cf9dwzrvvvr0s0m8fm";
|
||||
};
|
||||
|
||||
disabled = !isPy3k;
|
||||
|
||||
# web_cache doesn't have tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Simple Python key-value storage backed up by sqlite3 database";
|
||||
homepage = "https://github.com/desbma/web_cache";
|
||||
license = licenses.lgpl21Only;
|
||||
maintainers = with maintainers; [ fortuneteller2k ];
|
||||
};
|
||||
}
|
|
@ -8372,6 +8372,8 @@ in {
|
|||
|
||||
web = callPackage ../development/python-modules/web { };
|
||||
|
||||
web_cache = callPackage ../development/python-modules/web_cache { };
|
||||
|
||||
webcolors = callPackage ../development/python-modules/webcolors { };
|
||||
|
||||
webdavclient3 = callPackage ../development/python-modules/webdavclient3 { };
|
||||
|
|
Loading…
Reference in New Issue