1{ buildPythonPackage, lib, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "papis-python-rofi";
5 version = "1.0.3";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "358e24f5fb0a86de6f15d5168753ad4cbb97e52b36b1bd7abbad4053aeb6f621";
10 };
11
12 # No tests existing
13 doCheck = false;
14
15 meta = {
16 description = "A Python module to make simple GUIs with Rofi";
17 homepage = "https://github.com/alejandrogallo/python-rofi";
18 license = lib.licenses.mit;
19 maintainers = [ lib.maintainers.nico202 ];
20 };
21}