nixpkgs/pkgs/development/python-modules/behave/default.nix

53 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
, buildPythonApplication, python
, pytestCheckHook, mock, pathpy, pyhamcrest, pytest-html
, glibcLocales
, colorama, cucumber-tag-expressions, parse, parse-type, six
2017-08-28 04:09:23 +01:00
}:
2019-11-28 03:08:50 +00:00
2017-08-28 04:09:23 +01:00
buildPythonApplication rec {
pname = "behave";
version = "1.2.7.dev1";
2017-08-28 04:09:23 +01:00
src = fetchFromGitHub {
owner = "behave";
repo = pname;
rev = "v${version}";
sha256 = "1ssgixmqlg8sxsyalr83a1970njc2wg3zl8idsmxnsljwacv7qwv";
2017-08-28 04:09:23 +01:00
};
checkInputs = [ pytestCheckHook mock pathpy pyhamcrest pytest-html ];
2021-05-11 13:31:28 +01:00
# upstream tests are failing, so instead we only check if we can import it
doCheck = false;
pythonImportsCheck = [ "behave" ];
2017-08-28 04:09:23 +01:00
buildInputs = [ glibcLocales ];
propagatedBuildInputs = [ colorama cucumber-tag-expressions parse parse-type six ];
2017-08-28 04:09:23 +01:00
postPatch = ''
patchShebangs bin
'';
# timing-based test flaky on Darwin
# https://github.com/NixOS/nixpkgs/pull/97737#issuecomment-691489824
disabledTests = lib.optionals stdenv.isDarwin [ "test_step_decorator_async_run_until_complete" ];
2017-08-28 04:09:23 +01:00
postCheck = ''
2017-08-28 04:09:23 +01:00
export LANG="en_US.UTF-8"
export LC_ALL="en_US.UTF-8"
${python.interpreter} bin/behave -f progress3 --stop --tags='~@xfail' features/
${python.interpreter} bin/behave -f progress3 --stop --tags='~@xfail' tools/test-features/
${python.interpreter} bin/behave -f progress3 --stop --tags='~@xfail' issue.features/
'';
meta = with lib; {
homepage = "https://github.com/behave/behave";
2017-08-28 04:09:23 +01:00
description = "behaviour-driven development, Python style";
license = licenses.bsd2;
maintainers = with maintainers; [ alunduil maxxk ];
2017-08-28 04:09:23 +01:00
};
}