Commit d5dfba03 authored by Sigmanificient's avatar Sigmanificient
Browse files

python312Packages.ixia: init at 1.3.1

parent afd3a57b
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -5983,6 +5983,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 { };