fmt
This commit is contained in:
parent
a6c53e7706
commit
a4d13aa0a3
@ -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}
|
||||
|
@ -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 ];
|
||||
|
Loading…
Reference in New Issue
Block a user