python3Packages.web-cache: init at 1.1.0

This commit is contained in:
fortuneteller2k 2021-02-28 15:33:18 +08:00
parent b51b5a104b
commit eb7235a768
2 changed files with 25 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -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 { };