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

33 lines
791 B
Nix
Raw Normal View History

{stdenv, lib, buildPythonPackage, fetchPypi, bash, which}:
2017-05-07 11:00:23 +00:00
buildPythonPackage rec {
version = "0.7";
pname = "cram";
2018-02-19 17:23:50 +00:00
checkInputs = [ which ];
2017-05-07 11:00:23 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0bvz6fwdi55rkrz3f50zsy35gvvwhlppki2yml5bj5ffy9d499vx";
};
postPatch = ''
2018-02-19 17:23:50 +00:00
patchShebangs scripts/cram
2017-05-07 11:00:23 +00: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 11:00:23 +00: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 06:38:34 +00:00
# Tests fail on i686: https://hydra.nixos.org/build/52896671/nixlog/4
broken = stdenv.isi686;
2017-05-07 11:00:23 +00:00
};
}