Files
nixpkgs/pkgs/development/python-modules/pytest-cram/default.nix
T

35 lines
922 B
Nix
Raw Normal View History

{lib, buildPythonPackage, fetchPypi, pytest, cram, bash}:
2017-05-07 14:04:55 +03:00
buildPythonPackage rec {
2018-02-06 20:55:20 +02:00
version = "0.2.0";
2017-05-07 14:04:55 +03:00
pname = "pytest-cram";
buildInputs = [ pytest ];
propagatedBuildInputs = [ cram ];
src = fetchPypi {
inherit pname version;
2018-02-06 20:55:20 +02:00
sha256 = "006p5dr3q794sbwwmxmdls3nwq0fvnyrxxmc03pgq8n74chl71qn";
extension = "zip";
2017-05-07 14:04:55 +03:00
};
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 ];
};
}