bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
30 lines
712 B
Nix
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 ];
|
|
};
|
|
}
|