2018-07-21 01:44:44 +01:00
|
|
|
{stdenv, lib, buildPythonPackage, fetchPypi, bash, which}:
|
2017-05-07 12:00:23 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
version = "0.7";
|
|
|
|
pname = "cram";
|
|
|
|
|
2018-02-19 17:23:50 +00:00
|
|
|
checkInputs = [ which ];
|
2017-05-07 12:00:23 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0bvz6fwdi55rkrz3f50zsy35gvvwhlppki2yml5bj5ffy9d499vx";
|
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
2018-02-19 17:23:50 +00:00
|
|
|
patchShebangs scripts/cram
|
2017-05-07 12:00:23 +01:00
|
|
|
substituteInPlace tests/test.t \
|
|
|
|
--replace "/bin/bash" "${bash}/bin/bash"
|
|
|
|
'';
|
|
|
|
|
|
|
|
checkPhase = ''
|
2018-02-19 17:23:50 +00:00
|
|
|
scripts/cram tests
|
2017-05-07 12:00:23 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A simple testing framework for command line applications";
|
|
|
|
homepage = https://bitheap.org/cram/;
|
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
maintainers = with lib.maintainers; [ jluttine ];
|
2017-05-17 07:38:34 +01:00
|
|
|
# Tests fail on i686: https://hydra.nixos.org/build/52896671/nixlog/4
|
|
|
|
broken = stdenv.isi686;
|
2017-05-07 12:00:23 +01:00
|
|
|
};
|
|
|
|
}
|