python312Packages.crc: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-23 08:35:16 +02:00
parent eca2e5722b
commit 10cf59f9a1
1 changed files with 11 additions and 18 deletions

View File

@ -1,9 +1,10 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pytestCheckHook
, pythonOlder
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
@ -20,21 +21,13 @@ buildPythonPackage rec {
hash = "sha256-y30tnGG+G9dWBO8MUFYm2IGHiGIPbv4kB2VwhV0/C74=";
};
build-system = [
poetry-core
];
build-system = [ poetry-core ];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"crc"
];
pythonImportsCheck = [ "crc" ];
disabledTestPaths = [
"test/bench"
];
disabledTestPaths = [ "test/bench" ];
meta = with lib; {
description = "Python module for calculating and verifying predefined & custom CRC's";