52 lines
1.4 KiB
Nix
52 lines
1.4 KiB
Nix
{ stdenv, fetchPypi, fetchpatch
|
|
, buildPythonApplication, python, pythonOlder
|
|
, mock, nose, pathpy, pyhamcrest, pytest
|
|
, glibcLocales, parse, parse-type, six
|
|
, traceback2
|
|
}:
|
|
buildPythonApplication rec {
|
|
pname = "behave";
|
|
version = "1.2.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "11hsz365qglvpp1m1w16239c3kiw15lw7adha49lqaakm8kj6rmr";
|
|
};
|
|
|
|
patches = [
|
|
# Fix tests on Python 2.7
|
|
(fetchpatch {
|
|
url = https://github.com/behave/behave/commit/0a9430a94881cd18437deb03d2ae23afea0f009c.patch;
|
|
sha256 = "1nrh9ii6ik6gw2kjh8a6jk4mg5yqw3jfjfllbyxardclsab62ydy";
|
|
})
|
|
];
|
|
|
|
checkInputs = [ mock nose pathpy pyhamcrest pytest ];
|
|
buildInputs = [ glibcLocales ];
|
|
propagatedBuildInputs = [ parse parse-type six ] ++ stdenv.lib.optional (pythonOlder "3.0") traceback2;
|
|
|
|
postPatch = ''
|
|
patchShebangs bin
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
checkPhase = ''
|
|
export LANG="en_US.UTF-8"
|
|
export LC_ALL="en_US.UTF-8"
|
|
|
|
pytest test tests
|
|
|
|
${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 stdenv.lib; {
|
|
homepage = https://github.com/behave/behave;
|
|
description = "behaviour-driven development, Python style";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ alunduil ];
|
|
};
|
|
}
|