1{ lib, buildPythonPackage, fetchPypi, six, pytest }:
2
3buildPythonPackage rec {
4 pname = "allpairspy";
5 version = "2.4.3";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "8ce160db245375a5ccf0831be77cd98394f514c1b3501ddff5f8edb780ee1748";
10 };
11
12 propagatedBuildInputs = [ six ];
13
14 checkInputs = [ pytest ];
15
16 checkPhase = ''
17 py.test
18 '';
19
20 meta = with lib; {
21 description = "Pairwise test combinations generator";
22 homepage = https://github.com/thombashi/allpairspy;
23 license = licenses.mit;
24 };
25}