python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / database / sqlite-web / default.nix
blob9a9314fde9b1e069eee43f166949d9aa5fc14146
1 { lib
2 , python3Packages
3 }:
5 python3Packages.buildPythonApplication rec {
6   pname = "sqlite-web";
7   version = "0.3.6";
9   src = python3Packages.fetchPypi {
10     inherit pname version;
11     sha256 = "17pymadm063358nji70xzma64zkfv26c3pai5i1whsfp9ahqzasg";
12   };
14   propagatedBuildInputs = with python3Packages; [ flask peewee pygments ];
16   # no tests in repository
17   doCheck = false;
19   meta = with lib; {
20     description = "Web-based SQLite database browser";
21     homepage = "https://github.com/coleifer/sqlite-web";
22     license = licenses.mit;
23     maintainers = [ maintainers.costrouc ];
24   };