Files
nixpkgs/pkgs/development/python-modules/ixia/default.nix
MithicSpirit 91a3305359 python3Packages.ixia: 1.3.2 -> 2.0.0
Also uses pytest during check.
2025-01-26 17:37:03 -05:00

34 lines
754 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "ixia";
version = "2.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "trag1c";
repo = "ixia";
tag = version;
hash = "sha256-8STtLL63V+XnDqDNZOx7X9mkjUu176SSyQOL55LXFz0=";
};
build-system = [ hatchling ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "ixia" ];
meta = {
changelog = "https://github.com/trag1c/ixia/blob/${src.rev}/CHANGELOG.md";
description = "Connecting secrets' security with random's versatility";
license = lib.licenses.mit;
homepage = "https://trag1c.github.io/ixia";
maintainers = with lib.maintainers; [ sigmanificient ];
};
}