Files
nixos/overlays/xonsh-apipenv.nix
T

31 lines
596 B
Nix
Raw Normal View History

2024-10-19 01:19:59 -05:00
{
lib,
buildPythonPackage,
fetchFromGitHub,
toPythonModule,
pipenv,
2024-08-16 17:29:11 -05:00
}:
2023-06-13 09:39:32 -05:00
buildPythonPackage rec {
pname = "xonsh-apipenv";
version = "0.5.0";
2023-06-13 09:39:32 -05:00
src = fetchFromGitHub {
owner = "greg-hellings";
repo = "xontrib-apipenv";
rev = "0.5.0";
hash = "sha256-QJatIiIP1YVT8M5vLUPHmf/8CGZ34cXMBXQmfSgY5C4=";
};
2023-06-13 09:39:32 -05:00
doCheck = false;
2023-06-13 09:39:32 -05:00
2024-10-19 01:19:59 -05:00
dependencies = [ (toPythonModule pipenv) ];
2023-06-13 09:39:32 -05:00
meta = with lib; {
description = "Auto pipenv support for Xonsh";
homepage = "https://github.com/greg-hellings/xontrib-apipenv";
license = licenses.mit;
maintainers = [ ];
};
2023-06-13 09:39:32 -05:00
}