nixpkgs/pkgs/development/python-modules/polyswarm-api/default.nix
Fabian Affolter f5d6efdd9e python312Packages.polyswarm-api: init at 3.5.2
Library to interface with the PolySwarm consumer APIs

https://github.com/polyswarm/polyswarm-api
2024-03-31 17:45:45 +02:00

67 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, future
, jsonschema
, pytestCheckHook
, python-dateutil
, pythonOlder
, pythonRelaxDepsHook
, requests
, responses
, setuptools
, vcrpy
}:
buildPythonPackage rec {
pname = "polyswarm-api";
version = "3.5.2";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "polyswarm";
repo = "polyswarm-api";
rev = "refs/tags/${version}";
hash = "sha256-GMLgph6mjDSDn2CCfeqcqFY2gjtziH4xVHJhYTGRYw8=";
};
pythonRelaxDeps = [
"future"
];
nativeBuildInputs = [
pythonRelaxDepsHook
];
build-system = [
setuptools
];
dependencies = [
future
jsonschema
python-dateutil
requests
];
nativeCheckInputs = [
pytestCheckHook
responses
vcrpy
];
pythonImportsCheck = [
"polyswarm_api"
];
meta = with lib; {
description = "Library to interface with the PolySwarm consumer APIs";
homepage = "https://github.com/polyswarm/polyswarm-api";
changelog = "https://github.com/polyswarm/polyswarm-api/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}