From a4d13aa0a373689ebc7def40ccf66e5d0bad53f5 Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Wed, 3 May 2023 19:23:11 -0600 Subject: [PATCH] fmt --- configs/helix.nix | 10 ++++++++-- pkgs/python-dotenv.nix | 26 ++++++-------------------- 2 files changed, 14 insertions(+), 22 deletions(-) diff --git a/configs/helix.nix b/configs/helix.nix index 3e69f38..50f9030 100644 --- a/configs/helix.nix +++ b/configs/helix.nix @@ -26,8 +26,14 @@ let }; xdgDir = linkFarm "helix-config" [ - { name = "helix/config.toml"; path = helixConfig; } - { name = "helix/themes/acme-nobg.toml"; path = helixTheme; } + { + name = "helix/config.toml"; + path = helixConfig; + } + { + name = "helix/themes/acme-nobg.toml"; + path = helixTheme; + } ]; in pkgs.writeScriptBin "hx" '' # Conf: ${helixConfig} diff --git a/pkgs/python-dotenv.nix b/pkgs/python-dotenv.nix index 8038faf..60572d4 100644 --- a/pkgs/python-dotenv.nix +++ b/pkgs/python-dotenv.nix @@ -1,13 +1,5 @@ -{ lib -, buildPythonPackage -, click -, fetchPypi -, ipython -, mock -, pytestCheckHook -, pythonOlder -, sh -}: +{ lib, buildPythonPackage, click, fetchPypi, ipython, mock, pytestCheckHook +, pythonOlder, sh }: buildPythonPackage rec { pname = "python-dotenv"; @@ -21,21 +13,15 @@ buildPythonPackage rec { propagatedBuildInputs = [ click ]; - nativeCheckInputs = [ - ipython - mock - pytestCheckHook - sh - ]; + nativeCheckInputs = [ ipython mock pytestCheckHook sh ]; - disabledTests = [ - "cli" - ]; + disabledTests = [ "cli" ]; pythonImportsCheck = [ "dotenv" ]; meta = with lib; { - description = "Add .env support to your django/flask apps in development and deployments"; + description = + "Add .env support to your django/flask apps in development and deployments"; homepage = "https://github.com/theskumar/python-dotenv"; license = licenses.bsdOriginal; maintainers = with maintainers; [ erikarvstedt ];