mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-18 10:04:08 +00:00
python311Packages.autocommand: fix style issues
This commit is contained in:
parent
5c72490867
commit
043397326c
@ -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; [ ];
|
||||
|
Loading…
Reference in New Issue
Block a user