aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/pytest-cram
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/pytest-cram')
-rw-r--r--nixpkgs/pkgs/development/python-modules/pytest-cram/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/pytest-cram/default.nix b/nixpkgs/pkgs/development/python-modules/pytest-cram/default.nix
new file mode 100644
index 00000000000..237e5ee7355
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/pytest-cram/default.nix
@@ -0,0 +1,34 @@
+{lib, buildPythonPackage, fetchPypi, pytest, cram, bash}:
+
+buildPythonPackage rec {
+ version = "0.2.0";
+ pname = "pytest-cram";
+
+ checkInputs = [ pytest ];
+ propagatedBuildInputs = [ cram ];
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "006p5dr3q794sbwwmxmdls3nwq0fvnyrxxmc03pgq8n74chl71qn";
+ extension = "zip";
+ };
+
+ 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/ --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 ];
+ };
+}