depot/third_party/nixpkgs/pkgs/development/python-modules/editor/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

45 lines
821 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 = with maintainers; [ ];
};
}