python38Packages.percol: 0.1.0 -> unstable-2019-07-24

This commit is contained in:
illustris 2021-03-21 00:00:54 +05:30
parent cd29936577
commit e8e34953af
1 changed files with 12 additions and 11 deletions

View File

@ -1,25 +1,26 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k { lib, buildPythonPackage, fetchFromGitHub, cmigemo }:
, six
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "percol"; pname = "percol";
version = "0.2.1"; version = "unstable-2019-07-24";
disabled = isPy3k;
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "mooz";
sha256 = "7a649c6fae61635519d12a6bcacc742241aad1bff3230baef2cedd693ed9cfe8"; repo = "percol";
rev = "4b28037e328da3d0fe8165c11b800cbaddcb525e";
sha256 = "07sq3517wzn04j2dzlmczmcvx3w6r7xnzz3634zgf1zi6dbr2a3g";
}; };
propagatedBuildInputs = [ six ]; propagatedBuildInputs = [ cmigemo ];
# package has no tests
doCheck = false;
pythonImportsCheck = [ "percol" ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/mooz/percol"; homepage = "https://github.com/mooz/percol";
description = "Adds flavor of interactive filtering to the traditional pipe concept of shell"; description = "Adds flavor of interactive filtering to the traditional pipe concept of shell";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ koral ]; maintainers = with maintainers; [ koral ];
broken = true; # missing cmigemo package which is missing libmigemo.so
# also doesn't support python3
}; };
} }