emacsPackages.lsp-bridge: 0-unstable-2025-01-11 -> 0-unstable-2025-01-22 (#376531)
[NixPkgs.git] / pkgs / development / python-modules / percol / default.nix
blob9e0ec0df24eaba32284fe1acdefddba21998928e
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   cmigemo,
6 }:
8 buildPythonPackage rec {
9   pname = "percol";
10   version = "unstable-2019-07-24";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "mooz";
15     repo = "percol";
16     rev = "4b28037e328da3d0fe8165c11b800cbaddcb525e";
17     sha256 = "07sq3517wzn04j2dzlmczmcvx3w6r7xnzz3634zgf1zi6dbr2a3g";
18   };
20   propagatedBuildInputs = [ cmigemo ];
22   # package has no tests
23   doCheck = false;
24   pythonImportsCheck = [ "percol" ];
26   meta = with lib; {
27     homepage = "https://github.com/mooz/percol";
28     description = "Adds flavor of interactive filtering to the traditional pipe concept of shell";
29     mainProgram = "percol";
30     license = licenses.mit;
31     maintainers = with maintainers; [ koral ];
32   };