Commit 773847fb authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.atomiclong: format with nixfmt

parent 77aba030
Loading
Loading
Loading
Loading
+12 −19
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, cffi
, fetchPypi
, pytestCheckHook
, pythonOlder
, setuptools
{
  lib,
  buildPythonPackage,
  cffi,
  fetchPypi,
  pytestCheckHook,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
@@ -19,21 +20,13 @@ buildPythonPackage rec {
    hash = "sha256-yxN4xM1nbW8kNkHFDid1BKv0X3Dx6nbkRu/Nu2liS74=";
  };

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

  nativeCheckInputs = [
    pytestCheckHook
  ];
  nativeCheckInputs = [ pytestCheckHook ];

  dependencies = [
    cffi
  ];
  dependencies = [ cffi ];

  pythonImportsCheck = [
    "atomiclong"
  ];
  pythonImportsCheck = [ "atomiclong" ];

  meta = with lib; {
    description = "Long data type with atomic operations using CFFI";