Merge pull request #308472 from fabaff/polyswarm-api-bump
python312Packages.polyswarm-api: 3.5.2 -> 3.6.0
This commit is contained in:
commit
fdc804faf6
1 changed files with 20 additions and 27 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue