forked from mirrors/nixpkgs
python3Packages.pytest-subtests: init at 0.3.2
This commit is contained in:
parent
17db794991
commit
95f108391d
22
pkgs/development/python-modules/pytest-subtests/default.nix
Normal file
22
pkgs/development/python-modules/pytest-subtests/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, buildPythonPackage, isPy27, fetchPypi, setuptools_scm, pytestCheckHook }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pytest-subtests";
|
||||
version = "0.3.2";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1mxg91mrn8672f8hwg0f31xkyarnq7q0hr4fvb9hcb09jshq2wk7";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ setuptools_scm ];
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "pytest plugin for unittest subTest() support and subtests fixture";
|
||||
homepage = "https://github.com/pytest-dev/pytest-subtests";
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
|
@ -5815,6 +5815,8 @@ in {
|
|||
|
||||
pytest-subtesthack = callPackage ../development/python-modules/pytest-subtesthack { };
|
||||
|
||||
pytest-subtests = callPackage ../development/python-modules/pytest-subtests { };
|
||||
|
||||
pytest-sugar = callPackage ../development/python-modules/pytest-sugar { };
|
||||
|
||||
pytest-testmon = callPackage ../development/python-modules/pytest-testmon { };
|
||||
|
|
Loading…
Reference in a new issue