mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 08:26:37 +01:00
49 lines
998 B
Nix
49 lines
998 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
jsonschema,
|
|
pytestCheckHook,
|
|
python-dateutil,
|
|
requests,
|
|
responses,
|
|
setuptools,
|
|
vcrpy,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "polyswarm-api";
|
|
version = "3.16.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "polyswarm";
|
|
repo = "polyswarm-api";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-mdsgHwbGThy2Lzvgzb0mItwJkNspLiqGZzBGGuQdatM=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
jsonschema
|
|
python-dateutil
|
|
requests
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
responses
|
|
vcrpy
|
|
];
|
|
|
|
pythonImportsCheck = [ "polyswarm_api" ];
|
|
|
|
meta = {
|
|
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/${finalAttrs.src.tag}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
})
|