Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 cmigemo, 6}: 7 8buildPythonPackage rec { 9 pname = "percol"; 10 version = "unstable-2019-07-24"; 11 format = "setuptools"; 12 13 src = fetchFromGitHub { 14 owner = "mooz"; 15 repo = "percol"; 16 rev = "4b28037e328da3d0fe8165c11b800cbaddcb525e"; 17 sha256 = "07sq3517wzn04j2dzlmczmcvx3w6r7xnzz3634zgf1zi6dbr2a3g"; 18 }; 19 20 propagatedBuildInputs = [ cmigemo ]; 21 22 # package has no tests 23 doCheck = false; 24 pythonImportsCheck = [ "percol" ]; 25 26 meta = with lib; { 27 homepage = "https://github.com/mooz/percol"; 28 description = "Adds flavor of interactive filtering to the traditional pipe concept of shell"; 29 mainProgram = "percol"; 30 license = licenses.mit; 31 maintainers = with maintainers; [ koral ]; 32 }; 33}