nixpkgs/pkgs/development/tools/database/sqlite-web/default.nix

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

26 lines
592 B
Nix
Raw Normal View History

2018-11-26 10:37:23 +00:00
{ lib
, python3Packages
}:
python3Packages.buildPythonApplication rec {
pname = "sqlite-web";
2020-03-31 05:08:40 +00:00
version = "0.3.6";
2018-11-26 10:37:23 +00:00
src = python3Packages.fetchPypi {
inherit pname version;
2020-03-31 05:08:40 +00:00
sha256 = "17pymadm063358nji70xzma64zkfv26c3pai5i1whsfp9ahqzasg";
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";
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 ];
};
}