python3Packages.add-trailing-comma: remove period

This commit is contained in:
Fabian Affolter 2022-03-27 15:23:25 +02:00 committed by GitHub
parent 470909d735
commit 30cce69ffa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,6 +9,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "add-trailing-comma"; pname = "add-trailing-comma";
version = "2.2.1"; version = "2.2.1";
format = "setuptools";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -19,7 +20,9 @@ buildPythonPackage rec {
sha256 = "RBOL4mM9VciHHNmCTlRBIoXqeln19MKYxgv9p6GCNvU="; sha256 = "RBOL4mM9VciHHNmCTlRBIoXqeln19MKYxgv9p6GCNvU=";
}; };
propagatedBuildInputs = [ tokenize-rt ]; propagatedBuildInputs = [
tokenize-rt
];
pythonImportsCheck = [ pythonImportsCheck = [
"add_trailing_comma" "add_trailing_comma"
@ -30,7 +33,7 @@ buildPythonPackage rec {
]; ];
meta = with lib; { meta = with lib; {
description = "A tool (and pre-commit hook) to automatically add trailing commas to calls and literals."; description = "A tool (and pre-commit hook) to automatically add trailing commas to calls and literals";
homepage = "https://github.com/asottile/add-trailing-comma"; homepage = "https://github.com/asottile/add-trailing-comma";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ gador ]; maintainers = with maintainers; [ gador ];