python3Packages.ixia: 1.3.2 -> 2.0.0

Also uses pytest during check.
This commit is contained in:
MithicSpirit 2025-01-26 16:25:38 -05:00
parent 80a13a6825
commit 91a3305359
No known key found for this signature in database
GPG Key ID: 0EA043551EBD3C2E

View File

@ -2,22 +2,25 @@
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
hatchling,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "ixia";
version = "1.3.2";
version = "2.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "trag1c";
repo = "ixia";
tag = version;
hash = "sha256-lsov5AIT5uRf9nmS8ZsFmInKUFAxUATTbpfhV1fabhA=";
hash = "sha256-8STtLL63V+XnDqDNZOx7X9mkjUu176SSyQOL55LXFz0=";
};
build-system = [ poetry-core ];
build-system = [ hatchling ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "ixia" ];
meta = {