A complete reformatting to match nixpkgs-fmt
This commit is contained in:
+24
-24
@@ -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 = [ ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user