Merge pull request #315978 from Sigmanificient/ixia

This commit is contained in:
Sandro 2024-06-05 17:04:01 +02:00 committed by GitHub
commit 33291f18fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 32 additions and 0 deletions

@ -0,0 +1,30 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
}:
buildPythonPackage rec {
pname = "ixia";
version = "1.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "trag1c";
repo = "ixia";
rev = "refs/tags/${version}";
hash = "sha256-JGTwctzswItAJsKZzVVl+B2fZnCWpMmq9TnNgYY2Kng=";
};
build-system = [ poetry-core ];
pythonImportsCheck = [ "ixia" ];
meta = with lib; {
changelog = "https://github.com/trag1c/ixia/blob/${src.rev}/CHANGELOG.md";
description = "Connecting secrets' security with random's versatility";
license = licenses.mit;
homepage = "https://trag1c.github.io/ixia";
maintainers = with maintainers; [ sigmanificient ];
};
}

@ -5991,6 +5991,8 @@ self: super: with self; {
iwlib = callPackage ../development/python-modules/iwlib { };
ixia = callPackage ../development/python-modules/ixia { };
j2cli = callPackage ../development/python-modules/j2cli { };
jaconv = callPackage ../development/python-modules/jaconv { };