Skip to content

Commit

Permalink
Merge pull request #333051 from TomaSajt/pytest-spec
Browse files Browse the repository at this point in the history
python312Packages.pytest-spec: 3.2.0-unstable-2023-06-04 -> 4.0.0
  • Loading branch information
dotlambda authored Aug 8, 2024
2 parents 9f511f8 + 280cc69 commit f62e87b
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions pkgs/development/python-modules/pytest-spec/default.nix
Original file line number Diff line number Diff line change
@@ -1,34 +1,33 @@
{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
poetry-core,
setuptools,
setuptools-scm,
pytest,
pytestCheckHook,
pytest-describe,
}:

buildPythonPackage {
buildPythonPackage rec {
pname = "pytest-spec";
version = "3.2.0-unstable-2023-06-04";
version = "4.0.0";
pyproject = true;

disabled = pythonOlder "3.8";

src = fetchFromGitHub {
owner = "pchomik";
repo = "pytest-spec";
rev = "e16e0550dd6bc557411e4312b7b42d53b26e69ef";
hash = "sha256-dyDUdZJU4E4y1yCzunAX2c48Qv6ogu0b60U/5YbJvIU=";
rev = "refs/tags/${version}";
hash = "sha256-SOu4ucRcLQSk1YOfNifFDezsB+ZeLXTwbJJ93/3EASk=";
};

postPatch = ''
sed -i '/addopts/d' setup.cfg
# TODO: upstream
substituteInPlace pyproject.toml \
--replace-fail "poetry>=0.12" "poetry-core" \
--replace-fail "poetry.masonry.api" "poetry.core.masonry.api"
'';

nativeBuildInputs = [ poetry-core ];
build-system = [
setuptools
setuptools-scm
];

buildInputs = [ pytest ];

Expand All @@ -37,11 +36,10 @@ buildPythonPackage {
pytest-describe
];

pytestFlagsArray = [ "--spec" ];

pythonImportsCheck = [ "pytest_spec" ];

meta = {
changelog = "https://github.com/pchomik/pytest-spec/blob/${src.rev}/CHANGES.txt";
description = "Pytest plugin to display test execution output like a SPECIFICATION";
homepage = "https://github.com/pchomik/pytest-spec";
license = lib.licenses.gpl2Plus;
Expand Down

0 comments on commit f62e87b

Please sign in to comment.