summary refs log tree commit diff
path: root/pkgs/development/tools/database/sqlite-web/default.nix
blob: 9a9314fde9b1e069eee43f166949d9aa5fc14146 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, python3Packages
}:

python3Packages.buildPythonApplication rec {
  pname = "sqlite-web";
  version = "0.3.6";

  src = python3Packages.fetchPypi {
    inherit pname version;
    sha256 = "17pymadm063358nji70xzma64zkfv26c3pai5i1whsfp9ahqzasg";
  };

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