linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / cmdtest / default.nix
blob28d78203b6d40f6f40105ca6ac525d96195b9493
1 { lib
2 , buildPythonPackage
3 , fetchurl
4 , cliapp
5 , ttystatus
6 , markdown
7 , isPy3k
8 , isPyPy
9 }:
11 buildPythonPackage rec {
12   pname = "cmdtest";
13   version = "0.32";
14   disabled = isPy3k || isPyPy;
16   src = fetchurl {
17     url = "http://code.liw.fi/debian/pool/main/c/cmdtest/cmdtest_${version}.orig.tar.xz";
18     sha256 = "0scc47h1nkmbm5zlvk9bsnsg64kb9r4xadchdinf4f1mph9qpgn6";
19   };
21   propagatedBuildInputs = [ cliapp ttystatus markdown ];
23   # TODO: cmdtest tests must be run before the buildPhase
24   doCheck = false;
26   meta = with lib; {
27     homepage = "https://liw.fi/cmdtest/";
28     description = "Black box tests Unix command line tools";
29     license = licenses.gpl3;
30   };