nixpkgs/pkgs/by-name/sq/sqlite-web/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
636 B
Nix
Raw Normal View History

2018-11-26 10:37:23 +00:00
{
lib,
python3Packages,
fetchPypi,
2018-11-26 10:37:23 +00:00
}:
python3Packages.buildPythonApplication rec {
pname = "sqlite-web";
2024-07-16 05:42:17 +00:00
version = "0.6.4";
2018-11-26 10:37:23 +00:00
src = fetchPypi {
2018-11-26 10:37:23 +00:00
inherit pname version;
2024-07-16 05:42:17 +00:00
hash = "sha256-5Bdd1C9M3HjvfDKdVvGSQ+/I0Iimvf1MZwPonRiqwqU=";
2018-11-26 10:37:23 +00:00
};
propagatedBuildInputs = with python3Packages; [
flask
peewee
pygments
];
# no tests in repository
doCheck = false;
meta = with lib; {
description = "Web-based SQLite database browser";
mainProgram = "sqlite_web";
2020-03-31 05:08:40 +00:00
homepage = "https://github.com/coleifer/sqlite-web";
2018-11-26 10:37:23 +00:00
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}