Merge pull request #258266 from TomaSajt/pytest-spec
python310Packages.pytest-spec: init at unstable-2023-06-04
This commit is contained in:
commit
fa19f6e958
2 changed files with 52 additions and 0 deletions
50
pkgs/development/python-modules/pytest-spec/default.nix
Normal file
50
pkgs/development/python-modules/pytest-spec/default.nix
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, poetry-core
|
||||||
|
, pytest
|
||||||
|
, pytestCheckHook
|
||||||
|
, pytest-describe
|
||||||
|
, pytest-cov
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pytest-spec";
|
||||||
|
version = "unstable-2023-06-04";
|
||||||
|
pyproject = true;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "pchomik";
|
||||||
|
repo = "pytest-spec";
|
||||||
|
rev = "e16e0550dd6bc557411e4312b7b42d53b26e69ef";
|
||||||
|
hash = "sha256-dyDUdZJU4E4y1yCzunAX2c48Qv6ogu0b60U/5YbJvIU=";
|
||||||
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
sed -i '/addopts/d' setup.cfg
|
||||||
|
# TODO: upstream
|
||||||
|
substituteInPlace pyproject.toml \
|
||||||
|
--replace "poetry>=0.12" "poetry-core" \
|
||||||
|
--replace "poetry.masonry.api" "poetry.core.masonry.api"
|
||||||
|
'';
|
||||||
|
|
||||||
|
nativeBuildInputs = [ poetry-core ];
|
||||||
|
|
||||||
|
buildInputs = [ pytest ];
|
||||||
|
|
||||||
|
nativeCheckInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
pytest-describe
|
||||||
|
];
|
||||||
|
|
||||||
|
pytestFlagsArray = [ "--spec" ];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "pytest_spec" ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A pytest plugin to display test execution output like a SPECIFICATION";
|
||||||
|
homepage = "https://github.com/pchomik/pytest-spec";
|
||||||
|
license = lib.licenses.gpl2Plus;
|
||||||
|
maintainers = with lib.maintainers; [ tomasajt ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -10441,6 +10441,8 @@ self: super: with self; {
|
||||||
|
|
||||||
pytest-shutil = callPackage ../development/python-modules/pytest-shutil { };
|
pytest-shutil = callPackage ../development/python-modules/pytest-shutil { };
|
||||||
|
|
||||||
|
pytest-spec = callPackage ../development/python-modules/pytest-spec { };
|
||||||
|
|
||||||
python-status = callPackage ../development/python-modules/python-status { };
|
python-status = callPackage ../development/python-modules/python-status { };
|
||||||
|
|
||||||
python-string-utils = callPackage ../development/python-modules/python-string-utils { };
|
python-string-utils = callPackage ../development/python-modules/python-string-utils { };
|
||||||
|
|
Loading…
Reference in a new issue