python3Packages.pytest-raisin: init at 0.3
This commit is contained in:
parent
6ba4cef768
commit
305cfd9872
2 changed files with 39 additions and 0 deletions
37
pkgs/development/python-modules/pytest-raisin/default.nix
Normal file
37
pkgs/development/python-modules/pytest-raisin/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, flit-core
|
||||
, pytest
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pytest-raisin";
|
||||
version = "0.3";
|
||||
format = "flit";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "wimglenn";
|
||||
repo = "pytest-raisin";
|
||||
rev = "v${version}";
|
||||
sha256 = "73cOrsqlE04m6X3a6VwtRzfi24oqkdO3HjKQH61bU88=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
flit-core
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pytest
|
||||
];
|
||||
|
||||
# tests cause circular pytest-raisin already registered with pytest error
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Plugin enabling the use of exception instances with pytest.raises context";
|
||||
homepage = "https://github.com/wimglenn/pytest-raisin";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ aadibajpai ];
|
||||
};
|
||||
}
|
|
@ -7605,6 +7605,8 @@ in {
|
|||
|
||||
pytest-raisesregexp = callPackage ../development/python-modules/pytest-raisesregexp { };
|
||||
|
||||
pytest-raisin = callPackage ../development/python-modules/pytest-raisin { };
|
||||
|
||||
pytest-randomly = callPackage ../development/python-modules/pytest-randomly { };
|
||||
|
||||
pytest-random-order = callPackage ../development/python-modules/pytest-random-order { };
|
||||
|
|
Loading…
Reference in a new issue