Unverified Commit fdc804fa authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #308472 from fabaff/polyswarm-api-bump

python312Packages.polyswarm-api: 3.5.2 -> 3.6.0
parents d2e572e6 b03bb1e0
Loading
Loading
Loading
Loading
+20 −27
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 {
  pname = "polyswarm-api";
  version = "3.5.2";
  version = "3.6.0";
  pyproject = true;

  disabled = pythonOlder "3.8";
@@ -24,20 +25,14 @@ buildPythonPackage rec {
    owner = "polyswarm";
    repo = "polyswarm-api";
    rev = "refs/tags/${version}";
    hash = "sha256-GMLgph6mjDSDn2CCfeqcqFY2gjtziH4xVHJhYTGRYw8=";
    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";