This commit is contained in:
Aaron Bieber 2023-05-03 19:23:11 -06:00
parent a6c53e7706
commit a4d13aa0a3
No known key found for this signature in database
2 changed files with 14 additions and 22 deletions

View File

@ -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}

View File

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