mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 16:15:05 +00:00
31 lines
710 B
Nix
31 lines
710 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 = {
|
|
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 ];
|
|
};
|
|
}
|