1{ lib, buildPythonPackage, fetchPypi, six, pytest }:
2
3buildPythonPackage rec {
4 pname = "allpairspy";
5 version = "2.4.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "e8b35751f91692bf0318091b3f44cdf9bbbe3f37a2ff4786eaffc09dc7114fb3";
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}