Commit 019e635d authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.fastbencode: format with nixfmt

parent eb945009
Loading
Loading
Loading
Loading
+12 −17
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, cython
, fetchPypi
, python
, pythonOlder
, setuptools
{
  lib,
  buildPythonPackage,
  cython,
  fetchPypi,
  python,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
@@ -19,17 +20,11 @@ buildPythonPackage rec {
    hash = "sha256-X+DLfRc2iRr2HSreQM6UiUHUbpCLFvU4P1XxJ4SNoZc=";
  };

  build-system = [
    setuptools
  ];
  build-system = [ setuptools ];

  nativeBuildInputs = [
    cython
  ];
  nativeBuildInputs = [ cython ];

  pythonImportsCheck = [
    "fastbencode"
  ];
  pythonImportsCheck = [ "fastbencode" ];

  checkPhase = ''
    ${python.interpreter} -m unittest fastbencode.tests.test_suite