Files
nixpkgs/pkgs/development/python-modules/ixia/default.nix
T
2026-01-07 02:19:25 +01:00

34 lines
786 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "ixia";
version = "2.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "trag1c";
repo = "ixia";
tag = finalAttrs.version;
hash = "sha256-8STtLL63V+XnDqDNZOx7X9mkjUu176SSyQOL55LXFz0=";
};
build-system = [ hatchling ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "ixia" ];
meta = {
changelog = "https://github.com/trag1c/ixia/blob/${finalAttrs.src.tag}/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 ];
};
})