nixpkgs/pkgs/development/python-modules/ixia/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
710 B
Nix
Raw Normal View History

2024-05-30 20:07:10 +00:00
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
}:
buildPythonPackage rec {
pname = "ixia";
2024-06-06 00:22:39 +00:00
version = "1.3.2";
2024-05-30 20:07:10 +00:00
pyproject = true;
src = fetchFromGitHub {
owner = "trag1c";
repo = "ixia";
rev = "refs/tags/${version}";
2024-06-06 00:22:39 +00:00
hash = "sha256-lsov5AIT5uRf9nmS8ZsFmInKUFAxUATTbpfhV1fabhA=";
2024-05-30 20:07:10 +00:00
};
build-system = [ poetry-core ];
pythonImportsCheck = [ "ixia" ];
meta = {
2024-05-30 20:07:10 +00:00
changelog = "https://github.com/trag1c/ixia/blob/${src.rev}/CHANGELOG.md";
description = "Connecting secrets' security with random's versatility";
license = lib.licenses.mit;
2024-05-30 20:07:10 +00:00
homepage = "https://trag1c.github.io/ixia";
maintainers = with lib.maintainers; [ sigmanificient ];
2024-05-30 20:07:10 +00:00
};
}