2019-09-14 21:46:17 +02:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy3k
|
|
|
|
, six
|
2018-10-26 03:17:49 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "percol";
|
2018-11-04 11:35:09 +01:00
|
|
|
version = "0.2.1";
|
2018-10-26 03:17:49 +02:00
|
|
|
disabled = isPy3k;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-04 11:35:09 +01:00
|
|
|
sha256 = "7a649c6fae61635519d12a6bcacc742241aad1bff3230baef2cedd693ed9cfe8";
|
2018-10-26 03:17:49 +02:00
|
|
|
};
|
|
|
|
|
2019-09-14 21:46:17 +02:00
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/mooz/percol";
|
2018-10-26 03:17:49 +02:00
|
|
|
description = "Adds flavor of interactive filtering to the traditional pipe concept of shell";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ koral ];
|
2019-09-14 21:46:17 +02:00
|
|
|
broken = true; # missing cmigemo package which is missing libmigemo.so
|
|
|
|
# also doesn't support python3
|
2018-10-26 03:17:49 +02:00
|
|
|
};
|
|
|
|
}
|