Merge pull request #68819 from jonringer/mark-percol-broken

pythonPackages.percol: mark broken
This commit is contained in:
Mario Rodas 2019-09-15 17:45:59 -05:00 committed by GitHub
commit b46c3c5554
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,5 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
{ lib, buildPythonPackage, fetchPypi, isPy3k
, six
}:
buildPythonPackage rec {
@ -14,11 +12,14 @@ buildPythonPackage rec {
sha256 = "7a649c6fae61635519d12a6bcacc742241aad1bff3230baef2cedd693ed9cfe8";
};
meta = with stdenv.lib; {
propagatedBuildInputs = [ six ];
meta = with lib; {
homepage = https://github.com/mooz/percol;
description = "Adds flavor of interactive filtering to the traditional pipe concept of shell";
license = licenses.mit;
maintainers = with maintainers; [ koral ];
broken = true; # missing cmigemo package which is missing libmigemo.so
# also doesn't support python3
};
}