Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 657 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchgit 4, sphinx 5, isPy3k 6}: 7 8buildPythonPackage { 9 pname = "cliapp"; 10 version = "1.20150305"; 11 disabled = isPy3k; 12 13 src = fetchgit { 14 url = "http://git.liw.fi/cgi-bin/cgit/cgit.cgi/cliapp"; 15 rev = "569df8a5959cd8ef46f78c9497461240a5aa1123"; 16 sha256 = "882c5daf933e4cf089842995efc721e54361d98f64e0a075e7373b734cd899f3"; 17 }; 18 19 buildInputs = [ sphinx ]; 20 21 # error: invalid command 'test' 22 doCheck = false; 23 24 meta = with stdenv.lib; { 25 homepage = "http://liw.fi/cliapp/"; 26 description = "Python framework for Unix command line programs"; 27 license = licenses.gpl2; 28 maintainers = []; 29 }; 30 31}