depot/third_party/nixpkgs/pkgs/development/python-modules/ixia/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

30 lines
712 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
}:
buildPythonPackage rec {
pname = "ixia";
version = "1.3.2";
pyproject = true;
src = fetchFromGitHub {
owner = "trag1c";
repo = "ixia";
rev = "refs/tags/${version}";
hash = "sha256-lsov5AIT5uRf9nmS8ZsFmInKUFAxUATTbpfhV1fabhA=";
};
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 ];
};
}