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

python312Packages.polyswarm-api: 3.5.2 -> 3.6.0
This commit is contained in:
Fabian Affolter 2024-05-02 15:46:50 +02:00 committed by GitHub
commit fdc804faf6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,21 +1,22 @@
{ 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";