python313Packages.pytest-assume: init at 2.4.3 (#486120)
This commit is contained in:
@@ -12562,6 +12562,11 @@
|
||||
githubId = 277474;
|
||||
keys = [ { fingerprint = "F1F1 3395 8E8E 9CC4 D9FC 9647 1931 9CD8 416A 642B"; } ];
|
||||
};
|
||||
jfr = {
|
||||
name = "Joseph Fox-Rabinovitz";
|
||||
github = " joe-saronic";
|
||||
githubId = 156837150;
|
||||
};
|
||||
jfroche = {
|
||||
name = "Jean-François Roche";
|
||||
email = "jfroche@pyxel.be";
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
pytest,
|
||||
pytestCheckHook,
|
||||
six,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "pytest-assume";
|
||||
version = "2.4.3";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "astraw38";
|
||||
repo = "pytest-assume";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-QIwETun/n8SnBzK/axWiVTcuWiJ0ph3+2pQYVRMmVWI=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
buildInputs = [ pytest ];
|
||||
|
||||
dependencies = [ six ];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "pytest_assume" ];
|
||||
|
||||
meta = {
|
||||
description = "Pytest plugin that allows multiple failures per test";
|
||||
homepage = "https://github.com/astraw38/pytest-assume";
|
||||
changelog = "https://github.com/astraw38/pytest-assume/releases/tag/${finalAttrs.src.tag}";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ jfr ];
|
||||
};
|
||||
})
|
||||
@@ -15271,6 +15271,8 @@ self: super: with self; {
|
||||
|
||||
pytest-arraydiff = callPackage ../development/python-modules/pytest-arraydiff { };
|
||||
|
||||
pytest-assume = callPackage ../development/python-modules/pytest-assume { };
|
||||
|
||||
pytest-astropy = callPackage ../development/python-modules/pytest-astropy { };
|
||||
|
||||
pytest-astropy-header = callPackage ../development/python-modules/pytest-astropy-header { };
|
||||
|
||||
Reference in New Issue
Block a user