1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 pytestCheckHook,
6 setuptools,
7}:
8
9buildPythonPackage rec {
10 pname = "allpairspy";
11 version = "2.5.1";
12 format = "pyproject";
13
14 src = fetchFromGitHub {
15 owner = "thombashi";
16 repo = "allpairspy";
17 tag = "v${version}";
18 hash = "sha256-0wzoQDHB7Tt80ZTlKrNxFutztsgUuin5D2eb80c4PBI=";
19 };
20
21 nativeBuildInputs = [ setuptools ];
22
23 nativeCheckInputs = [ pytestCheckHook ];
24
25 pythonImportsCheck = [ "allpairspy" ];
26
27 meta = with lib; {
28 description = "Pairwise test combinations generator";
29 homepage = "https://github.com/thombashi/allpairspy";
30 changelog = "https://github.com/thombashi/allpairspy/releases/tag/v${version}";
31 license = licenses.mit;
32 maintainers = with maintainers; [ nickcao ];
33 };
34}