python311Packages.autocommand: fix style issues

This commit is contained in:
Fabian Affolter 2023-08-07 08:37:55 +02:00 committed by GitHub
parent 5c72490867
commit 043397326c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,19 +11,23 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "Lucretiel";
repo = "autocommand";
rev = version;
rev = "refs/tags/${version}";
hash = "sha256-9bv9Agj4RpeyNJvTLUaMwygQld2iZZkoLb81rkXOd3E=";
};
# fails with: SyntaxError: invalid syntax
doCheck = false;
nativeCheckInputs = [ pytestCheckHook ];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "autocommand" ];
pythonImportsCheck = [
"autocommand"
];
meta = with lib; {
description = " Autocommand turns a python function into a CLI program ";
description = "Autocommand turns a python function into a CLI program";
homepage = "https://github.com/Lucretiel/autocommand";
license = licenses.lgpl3;
maintainers = with maintainers; [ ];