f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonAtLeast,
|
|
setuptools,
|
|
pytest_7,
|
|
cram,
|
|
bash,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-cram";
|
|
version = "0.2.2";
|
|
pyproject = true;
|
|
|
|
# relies on the imp module
|
|
disabled = pythonAtLeast "3.12";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0405ymmrsv6ii2qhq35nxfjkb402sdb6d13xnk53jql3ybgmiqq0";
|
|
extension = "tar.gz";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pytest_cram/tests/test_options.py \
|
|
--replace "/bin/bash" "${bash}/bin/bash"
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ cram ];
|
|
|
|
# https://github.com/tbekolay/pytest-cram/issues/15
|
|
nativeCheckInputs = [ pytest_7 ];
|
|
|
|
# Remove __init__.py from tests folder, otherwise pytest raises an error that
|
|
# the imported and collected modules are different.
|
|
checkPhase = ''
|
|
rm pytest_cram/tests/__init__.py
|
|
pytest pytest_cram/ --ignore=pytest_cram/tests/test_examples.py
|
|
'';
|
|
|
|
meta = {
|
|
description = "Test command-line applications with pytest and cram";
|
|
homepage = "https://github.com/tbekolay/pytest-cram";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ jluttine ];
|
|
};
|
|
}
|