depot/third_party/nixpkgs/pkgs/development/python-modules/allpairspy/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

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 = [ ];
};
}