Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
46 lines
803 B
Nix
46 lines
803 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
runs,
|
|
xmod,
|
|
pytestCheckHook,
|
|
tdir,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "editor";
|
|
version = "1.6.6";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rec";
|
|
repo = "editor";
|
|
rev = "v${version}";
|
|
hash = "sha256-FVtat3gUsK5Lv6XSkVXj0hY6NkMGw6LxRWMJrZ/cIis=";
|
|
};
|
|
|
|
nativeBuildInputs = [ poetry-core ];
|
|
|
|
propagatedBuildInputs = [
|
|
runs
|
|
xmod
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
tdir
|
|
];
|
|
|
|
pythonImportsCheck = [ "editor" ];
|
|
|
|
meta = with lib; {
|
|
description = "Open the default text editor";
|
|
homepage = "https://github.com/rec/editor";
|
|
changelog = "https://github.com/rec/editor/blob/${src.rev}/CHANGELOG";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|