mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
pythonPackages: barectf: init at 3.1.2
This commit is contained in:
parent
575ce47fa4
commit
5021abc8de
2 changed files with 46 additions and 0 deletions
44
pkgs/development/python-modules/barectf/default.nix
Normal file
44
pkgs/development/python-modules/barectf/default.nix
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, poetry-core
|
||||||
|
, pytestCheckHook
|
||||||
|
, 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 ];
|
||||||
|
nativeCheckInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
setuptools # needs pkg_resources at runtime
|
||||||
|
jsonschema
|
||||||
|
pyyaml
|
||||||
|
jinja2
|
||||||
|
termcolor
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "barectf" ];
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1297,6 +1297,8 @@ self: super: with self; {
|
||||||
inherit (pkgs.ocaml-ng.ocamlPackages) bap;
|
inherit (pkgs.ocaml-ng.ocamlPackages) bap;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
barectf = callPackage ../development/python-modules/barectf { };
|
||||||
|
|
||||||
baron = callPackage ../development/python-modules/baron { };
|
baron = callPackage ../development/python-modules/baron { };
|
||||||
|
|
||||||
base36 = callPackage ../development/python-modules/base36 { };
|
base36 = callPackage ../development/python-modules/base36 { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue