Commit b03bb1e0 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.polyswarm-api: format with nixfmt

parent 138ffe40
Loading
Loading
Loading
Loading
+18 −25
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, future
, jsonschema
, pytestCheckHook
, python-dateutil
, pythonOlder
, pythonRelaxDepsHook
, requests
, responses
, setuptools
, vcrpy
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  future,
  jsonschema,
  pytestCheckHook,
  python-dateutil,
  pythonOlder,
  pythonRelaxDepsHook,
  requests,
  responses,
  setuptools,
  vcrpy,
}:

buildPythonPackage rec {
@@ -27,17 +28,11 @@ buildPythonPackage rec {
    hash = "sha256-iY0I5z+aDLQekjgHT5v/ZprCkCgNPkyImmmaCQgnoYc=";
  };

  pythonRelaxDeps = [
    "future"
  ];
  pythonRelaxDeps = [ "future" ];

  nativeBuildInputs = [
    pythonRelaxDepsHook
  ];
  nativeBuildInputs = [ pythonRelaxDepsHook ];

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

  dependencies = [
    future
@@ -52,9 +47,7 @@ buildPythonPackage rec {
    vcrpy
  ];

  pythonImportsCheck = [
    "polyswarm_api"
  ];
  pythonImportsCheck = [ "polyswarm_api" ];

  meta = with lib; {
    description = "Library to interface with the PolySwarm consumer APIs";