fmt
This commit is contained in:
parent
a6c53e7706
commit
a4d13aa0a3
@ -26,8 +26,14 @@ let
|
|||||||
};
|
};
|
||||||
|
|
||||||
xdgDir = linkFarm "helix-config" [
|
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" ''
|
in pkgs.writeScriptBin "hx" ''
|
||||||
# Conf: ${helixConfig}
|
# Conf: ${helixConfig}
|
||||||
|
@ -1,13 +1,5 @@
|
|||||||
{ lib
|
{ lib, buildPythonPackage, click, fetchPypi, ipython, mock, pytestCheckHook
|
||||||
, buildPythonPackage
|
, pythonOlder, sh }:
|
||||||
, click
|
|
||||||
, fetchPypi
|
|
||||||
, ipython
|
|
||||||
, mock
|
|
||||||
, pytestCheckHook
|
|
||||||
, pythonOlder
|
|
||||||
, sh
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "python-dotenv";
|
pname = "python-dotenv";
|
||||||
@ -21,21 +13,15 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
propagatedBuildInputs = [ click ];
|
propagatedBuildInputs = [ click ];
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [ ipython mock pytestCheckHook sh ];
|
||||||
ipython
|
|
||||||
mock
|
|
||||||
pytestCheckHook
|
|
||||||
sh
|
|
||||||
];
|
|
||||||
|
|
||||||
disabledTests = [
|
disabledTests = [ "cli" ];
|
||||||
"cli"
|
|
||||||
];
|
|
||||||
|
|
||||||
pythonImportsCheck = [ "dotenv" ];
|
pythonImportsCheck = [ "dotenv" ];
|
||||||
|
|
||||||
meta = with lib; {
|
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";
|
homepage = "https://github.com/theskumar/python-dotenv";
|
||||||
license = licenses.bsdOriginal;
|
license = licenses.bsdOriginal;
|
||||||
maintainers = with maintainers; [ erikarvstedt ];
|
maintainers = with maintainers; [ erikarvstedt ];
|
||||||
|
Loading…
Reference in New Issue
Block a user