blob: c82a9bff2a95e5517fa601989dd71824ccbf8108 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{
lib,
buildPythonPackage,
fetchFromGitea,
setuptools,
setuptools-scm,
hypothesis,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pybcj";
version = "1.0.3";
pyproject = true;
src = fetchFromGitea {
domain = "codeberg.org";
owner = "miurahr";
repo = "pybcj";
tag = "v${version}";
hash = "sha256-ExSt7E7ZaVEa0NwAQHU0fOaXJW9jYmEUUy/1iUilGz8=";
};
build-system = [
setuptools
setuptools-scm
];
nativeCheckInputs = [
hypothesis
pytestCheckHook
];
pythonImportsCheck = [
"bcj"
];
meta = {
description = "BCJ (Branch-Call-Jump) filter for Python";
homepage = "https://codeberg.org/miurahr/pybcj";
changelog = "https://codeberg.org/miurahr/pybcj/src/tag/v${version}/Changelog.rst#v${version}";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [
pitkling
PopeRigby
];
};
}
|