Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 674 B view raw
1{ lib, buildPythonPackage, fetchPypi, isPy3k 2, six 3}: 4 5buildPythonPackage rec { 6 pname = "percol"; 7 version = "0.2.1"; 8 disabled = isPy3k; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "7a649c6fae61635519d12a6bcacc742241aad1bff3230baef2cedd693ed9cfe8"; 13 }; 14 15 propagatedBuildInputs = [ six ]; 16 17 meta = with lib; { 18 homepage = "https://github.com/mooz/percol"; 19 description = "Adds flavor of interactive filtering to the traditional pipe concept of shell"; 20 license = licenses.mit; 21 maintainers = with maintainers; [ koral ]; 22 broken = true; # missing cmigemo package which is missing libmigemo.so 23 # also doesn't support python3 24 }; 25}