A complete reformatting to match nixpkgs-fmt

This commit is contained in:
Greg Hellings
2024-10-03 11:26:39 -05:00
parent e2f0856102
commit 78c802d32c
114 changed files with 5246 additions and 5089 deletions
+24 -24
View File
@@ -1,32 +1,32 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
toPythonModule,
pipenv,
{ lib
, buildPythonPackage
, fetchFromGitHub
, toPythonModule
, pipenv
,
}:
buildPythonPackage rec {
pname = "xonsh-apipenv";
version = "0.5.0";
pname = "xonsh-apipenv";
version = "0.5.0";
src = fetchFromGitHub {
owner = "greg-hellings";
repo = "xontrib-apipenv";
rev = "0.5.0";
hash = "sha256-QJatIiIP1YVT8M5vLUPHmf/8CGZ34cXMBXQmfSgY5C4=";
};
src = fetchFromGitHub {
owner = "greg-hellings";
repo = "xontrib-apipenv";
rev = "0.5.0";
hash = "sha256-QJatIiIP1YVT8M5vLUPHmf/8CGZ34cXMBXQmfSgY5C4=";
};
doCheck = false;
doCheck = false;
dependencies = [
(toPythonModule pipenv)
];
dependencies = [
(toPythonModule pipenv)
];
meta = with lib; {
description = "Auto pipenv support for Xonsh";
homepage = "https://github.com/greg-hellings/xontrib-apipenv";
license = licenses.mit;
maintainers = [];
};
meta = with lib; {
description = "Auto pipenv support for Xonsh";
homepage = "https://github.com/greg-hellings/xontrib-apipenv";
license = licenses.mit;
maintainers = [ ];
};
}