1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, isPy3k
5}:
6
7buildPythonPackage rec {
8 pname = "percol";
9 version = "0.2.1";
10 disabled = isPy3k;
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "7a649c6fae61635519d12a6bcacc742241aad1bff3230baef2cedd693ed9cfe8";
15 };
16
17 meta = with stdenv.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 };
23
24}