Merge pull request #25609 from jluttine/add-nbstripout

nbstripout: init at 0.3.0
This commit is contained in:
Frederik Rietdijk
2017-05-15 08:47:12 +02:00
committed by GitHub
5 changed files with 110 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
{lib, buildPythonPackage, fetchPypi, coverage, bash, which, writeText}:
buildPythonPackage rec {
name = "${pname}-${version}";
version = "0.7";
pname = "cram";
buildInputs = [ coverage which ];
src = fetchPypi {
inherit pname version;
sha256 = "0bvz6fwdi55rkrz3f50zsy35gvvwhlppki2yml5bj5ffy9d499vx";
};
postPatch = ''
substituteInPlace tests/test.t \
--replace "/bin/bash" "${bash}/bin/bash"
'';
# This testing is copied from Makefile. Simply using `make test` doesn't work
# because it uses the unpatched `scripts/cram` executable which has a bad
# shebang. Also, for some reason, coverage fails on one file so let's just
# ignore that one.
checkPhase = ''
# scripts/cram tests
#COVERAGE=${coverage}/bin/coverage $out/bin/cram tests
#${coverage}/bin/coverage report --fail-under=100
COVERAGE=coverage $out/bin/cram tests
coverage report --fail-under=100 --omit="*/_encoding.py"
'';
meta = {
description = "A simple testing framework for command line applications";
homepage = https://bitheap.org/cram/;
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ jluttine ];
};
}

View File

@@ -0,0 +1,34 @@
{lib, buildPythonPackage, fetchPypi, pytest, cram, bash, writeText}:
buildPythonPackage rec {
name = "${pname}-${version}";
version = "0.1.1";
pname = "pytest-cram";
buildInputs = [ pytest ];
propagatedBuildInputs = [ cram ];
src = fetchPypi {
inherit pname version;
sha256 = "0ad05999iqzyjay9y5lc0cnd3jv8qxqlzsvxzp76shslmhrv0c4f";
};
postPatch = ''
substituteInPlace pytest_cram/tests/test_options.py \
--replace "/bin/bash" "${bash}/bin/bash"
'';
# 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
'';
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 ];
};
}