about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ixia/default.nix
blob: e0e9f13f7dde63f421a1c6d609f1ef05d3ea6cfd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  poetry-core,
}:

buildPythonPackage rec {
  pname = "ixia";
  version = "1.3.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "trag1c";
    repo = "ixia";
    rev = "refs/tags/${version}";
    hash = "sha256-JGTwctzswItAJsKZzVVl+B2fZnCWpMmq9TnNgYY2Kng=";
  };

  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 ];
  };
}