9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
34 lines
682 B
Nix
34 lines
682 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytestCheckHook
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "allpairspy";
|
|
version = "2.5.1";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-9p0xo7Vu7hGdHsYGPpxzLdRPu6NS73OMsi2WmfxACf4=";
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
setuptools
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"allpairspy"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Pairwise test combinations generator";
|
|
homepage = "https://github.com/thombashi/allpairspy";
|
|
changelog = "https://github.com/thombashi/allpairspy/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|