Commit a402cd72 authored by Robert Schütz's avatar Robert Schütz
Browse files

fittrackee: format with nixfmt-rfc-style

parent 389bca77
Loading
Loading
Loading
Loading
+33 −29
Original line number Diff line number Diff line
{ lib
, python3
, fetchFromGitHub
, fetchPypi
, postgresql
, postgresqlTestHook
{
  fetchFromGitHub,
  fetchPypi,
  lib,
  postgresql,
  postgresqlTestHook,
  python3,
}:
let
  python = python3.override {
@@ -53,7 +54,9 @@ python.pkgs.buildPythonApplication rec {
    "pyopenssl"
  ];

  dependencies = with python.pkgs; [
  dependencies =
    with python.pkgs;
    [
      authlib
      babel
      click
@@ -75,7 +78,8 @@ python.pkgs.buildPythonApplication rec {
      sqlalchemy
      staticmap
      ua-parser
  ] ++ dramatiq.optional-dependencies.redis
    ]
    ++ dramatiq.optional-dependencies.redis
    ++ flask-limiter.optional-dependencies.redis;

  pythonImportsCheck = [ "fittrackee" ];