ab55124ae8
Checking runtime dependencies for barectf-3.1.2-py3-none-any.whl - jsonschema<4.0,>=3.2 not satisifeid by version 4.19.0 - pyyaml<6.0,>=5.3 not satisifeid by version 6.0.1 - termcolor<2.0,>=1.1 not satisifeid by version 2.3.0
60 lines
1.0 KiB
Nix
60 lines
1.0 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, pytestCheckHook
|
|
, pythonRelaxDepsHook
|
|
, setuptools
|
|
, jsonschema
|
|
, pyyaml
|
|
, jinja2
|
|
, termcolor
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "barectf";
|
|
version = "3.1.2";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "efficios";
|
|
repo = "barectf";
|
|
rev = "v${version}";
|
|
hash = "sha256-JelFfd3WS012dveNlIljhLdyPmgE9VEOXoZE3MBA/Gw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
"jsonschema"
|
|
"pyyaml"
|
|
"termcolor"
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
setuptools # needs pkg_resources at runtime
|
|
jsonschema
|
|
pyyaml
|
|
jinja2
|
|
termcolor
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"barectf"
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Generator of ANSI C tracers which output CTF data streams ";
|
|
homepage = "https://github.com/efficios/barectf";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ Madouura ];
|
|
};
|
|
}
|