1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 hatchling,
6 pytestCheckHook,
7}:
8
9buildPythonPackage rec {
10 pname = "ixia";
11 version = "2.0.0";
12 pyproject = true;
13
14 src = fetchFromGitHub {
15 owner = "trag1c";
16 repo = "ixia";
17 tag = version;
18 hash = "sha256-8STtLL63V+XnDqDNZOx7X9mkjUu176SSyQOL55LXFz0=";
19 };
20
21 build-system = [ hatchling ];
22
23 nativeCheckInputs = [ pytestCheckHook ];
24 pythonImportsCheck = [ "ixia" ];
25
26 meta = {
27 changelog = "https://github.com/trag1c/ixia/blob/${src.rev}/CHANGELOG.md";
28 description = "Connecting secrets' security with random's versatility";
29 license = lib.licenses.mit;
30 homepage = "https://trag1c.github.io/ixia";
31 maintainers = with lib.maintainers; [ sigmanificient ];
32 };
33}