mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-19 23:21:27 +00:00
sacad: init at 2.3.4
This commit is contained in:
25
pkgs/development/python-modules/web-cache/default.nix
Normal file
25
pkgs/development/python-modules/web-cache/default.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, isPy3k }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "web-cache";
|
||||
version = "1.1.0";
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version;
|
||||
pname = "web_cache";
|
||||
sha256 = "1d8f1s3i0s3h1jqvjq6cp639hhbbpxvyq7cf9dwzrvvvr0s0m8fm";
|
||||
};
|
||||
|
||||
# No tests in downloaded archive
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "web_cache" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Simple Python key-value storage backed up by sqlite3 database";
|
||||
homepage = "https://github.com/desbma/web_cache";
|
||||
license = licenses.lgpl2Plus;
|
||||
maintainers = with maintainers; [ fortuneteller2k ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user