mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
python312Packages.crc: format with nixfmt
This commit is contained in:
parent
eca2e5722b
commit
10cf59f9a1
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user