Files
nixos/overlays/xonsh-apipenv.nix
T

32 lines
643 B
Nix
Raw Normal View History

2024-10-19 01:19:59 -05:00
{
lib,
buildPythonPackage,
fetchFromGitHub,
toPythonModule,
pipenv,
2025-07-24 09:55:27 -05:00
setuptools,
2024-08-16 17:29:11 -05:00
}:
2023-06-13 09:39:32 -05:00
2025-04-18 14:43:01 -05:00
buildPythonPackage rec {
pname = "xonsh-apipenv";
2025-04-18 14:43:01 -05:00
version = "0.6.0";
2025-07-24 09:55:27 -05:00
pyproject = true;
2023-06-13 09:39:32 -05:00
src = fetchFromGitHub {
owner = "greg-hellings";
repo = "xontrib-apipenv";
2025-04-18 14:43:01 -05:00
rev = version;
hash = "sha256-Wa8iev0ow1oh95tPCv5tAJUMBYiStWms8I31WbVcOok=";
};
2023-06-13 09:39:32 -05:00
2024-10-19 01:19:59 -05:00
dependencies = [ (toPythonModule pipenv) ];
2025-07-24 09:55:27 -05:00
build-system = [ setuptools ];
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
}