Files
nixpkgs/pkgs/development/python-modules/editor/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

46 lines
797 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 = {
description = "Open the default text editor";
homepage = "https://github.com/rec/editor";
changelog = "https://github.com/rec/editor/blob/${src.rev}/CHANGELOG";
license = lib.licenses.mit;
maintainers = [ ];
};
}