2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
stdenv,
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
bash,
|
|
|
|
which,
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
version = "0.7";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "cram";
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [ which ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0bvz6fwdi55rkrz3f50zsy35gvvwhlppki2yml5bj5ffy9d499vx";
|
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
patchShebangs scripts/cram
|
|
|
|
substituteInPlace tests/test.t \
|
|
|
|
--replace "/bin/bash" "${bash}/bin/bash"
|
|
|
|
'';
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
scripts/cram tests
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Simple testing framework for command line applications";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "cram";
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://bitheap.org/cram/";
|
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
maintainers = with lib.maintainers; [ jluttine ];
|
|
|
|
# Tests fail on i686: https://hydra.nixos.org/build/52896671/nixlog/4
|
2024-09-26 11:04:55 +00:00
|
|
|
broken = stdenv.hostPlatform.isi686;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|