about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/allpairspy/default.nix
blob: e64a6004b78982e5e64b59ca1f80d45604656c9e (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
{ lib, buildPythonPackage, fetchPypi, six, pytest }:

buildPythonPackage rec {
  pname = "allpairspy";
  version = "2.4.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "8ce160db245375a5ccf0831be77cd98394f514c1b3501ddff5f8edb780ee1748";
  };

  propagatedBuildInputs = [ six ];

  checkInputs = [ pytest ];

  checkPhase = ''
    py.test
  '';

  meta = with lib; {
    description = "Pairwise test combinations generator";
    homepage = https://github.com/thombashi/allpairspy;
    license = licenses.mit;
  };
}