python311Packages.ldfparser: format with nixfmt
This commit is contained in:
parent
1b69a6992b
commit
24a8856031
1 changed files with 13 additions and 16 deletions
|
@ -1,13 +1,14 @@
|
||||||
{ lib
|
{
|
||||||
, bitstruct
|
lib,
|
||||||
, buildPythonPackage
|
bitstruct,
|
||||||
, fetchFromGitHub
|
buildPythonPackage,
|
||||||
, jinja2
|
fetchFromGitHub,
|
||||||
, jsonschema
|
jinja2,
|
||||||
, lark
|
jsonschema,
|
||||||
, pytestCheckHook
|
lark,
|
||||||
, pythonOlder
|
pytestCheckHook,
|
||||||
, setuptools
|
pythonOlder,
|
||||||
|
setuptools,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -24,9 +25,7 @@ buildPythonPackage rec {
|
||||||
hash = "sha256-SZ9mWV5PjkQ2OiScPSMrunkKQWmuYW2lB2JvpTGNbY4=";
|
hash = "sha256-SZ9mWV5PjkQ2OiScPSMrunkKQWmuYW2lB2JvpTGNbY4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [
|
build-system = [ setuptools ];
|
||||||
setuptools
|
|
||||||
];
|
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
bitstruct
|
bitstruct
|
||||||
|
@ -39,9 +38,7 @@ buildPythonPackage rec {
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [ "ldfparser" ];
|
||||||
"ldfparser"
|
|
||||||
];
|
|
||||||
|
|
||||||
disabledTestPaths = [
|
disabledTestPaths = [
|
||||||
# We don't care about benchmarks
|
# We don't care about benchmarks
|
||||||
|
|
Loading…
Reference in a new issue