sqlite-web: init at 0.3.5 (#50955)
This commit is contained in:
parent
4fef4fbb4b
commit
aadeacfd5d
25
pkgs/development/tools/database/sqlite-web/default.nix
Normal file
25
pkgs/development/tools/database/sqlite-web/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib
|
||||
, python3Packages
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "sqlite-web";
|
||||
version = "0.3.5";
|
||||
|
||||
src = python3Packages.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "9e0c8938434b0129423544162d4ca6975abf7042c131445f79661a4b9c885d47";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [ flask peewee pygments ];
|
||||
|
||||
# no tests in repository
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Web-based SQLite database browser";
|
||||
homepage = https://github.com/coleifer/sqlite-web;
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
@ -8964,6 +8964,8 @@ with pkgs;
|
||||
|
||||
sqlitebrowser = libsForQt5.callPackage ../development/tools/database/sqlitebrowser { };
|
||||
|
||||
sqlite-web = callPackage ../development/tools/database/sqlite-web { };
|
||||
|
||||
sselp = callPackage ../tools/X11/sselp{ };
|
||||
|
||||
stm32flash = callPackage ../development/tools/misc/stm32flash { };
|
||||
|
Loading…
Reference in New Issue
Block a user