python312Packages.xmlschema: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-09 22:47:18 +02:00
parent a8c0b0eea0
commit 48448f4405
1 changed files with 13 additions and 18 deletions

View File

@ -1,12 +1,13 @@
{ lib
, buildPythonPackage
, elementpath
, fetchFromGitHub
, jinja2
, lxml
, pytestCheckHook
, pythonOlder
, setuptools
{
lib,
buildPythonPackage,
elementpath,
fetchFromGitHub,
jinja2,
lxml,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
@ -23,13 +24,9 @@ buildPythonPackage rec {
hash = "sha256-jhof4C/jbMcvBRTLFdeFq2+ZucoDhbdcLE9IWvgzN0Y=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
elementpath
];
dependencies = [ elementpath ];
nativeCheckInputs = [
jinja2
@ -37,9 +34,7 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [
"xmlschema"
];
pythonImportsCheck = [ "xmlschema" ];
meta = with lib; {
description = "XML Schema validator and data conversion library for Python";