python312Packages.crc: refactor

This commit is contained in:
Fabian Affolter 2024-04-23 08:34:53 +02:00
parent 1b8a657cc0
commit eca2e5722b

View File

@ -20,7 +20,7 @@ buildPythonPackage rec {
hash = "sha256-y30tnGG+G9dWBO8MUFYm2IGHiGIPbv4kB2VwhV0/C74="; hash = "sha256-y30tnGG+G9dWBO8MUFYm2IGHiGIPbv4kB2VwhV0/C74=";
}; };
nativeBuildInputs = [ build-system = [
poetry-core poetry-core
]; ];
@ -37,11 +37,11 @@ buildPythonPackage rec {
]; ];
meta = with lib; { meta = with lib; {
changelog = "https://github.com/Nicoretti/crc/releases/tag/${version}";
description = "Python module for calculating and verifying predefined & custom CRC's"; description = "Python module for calculating and verifying predefined & custom CRC's";
mainProgram = "crc";
homepage = "https://nicoretti.github.io/crc/"; homepage = "https://nicoretti.github.io/crc/";
changelog = "https://github.com/Nicoretti/crc/releases/tag/${version}";
license = licenses.bsd2; license = licenses.bsd2;
maintainers = with maintainers; [ jleightcap ]; maintainers = with maintainers; [ jleightcap ];
mainProgram = "crc";
}; };
} }