Commit 48448f44 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.xmlschema: format with nixfmt

parent a8c0b0ee
Loading
Loading
Loading
Loading
+13 −18
Original line number Diff line number Diff line
{ 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";