22 lines
523 B
Nix
22 lines
523 B
Nix
{ buildPythonPackage, lib, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "papis-python-rofi";
|
|
version = "1.0.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "358e24f5fb0a86de6f15d5168753ad4cbb97e52b36b1bd7abbad4053aeb6f621";
|
|
};
|
|
|
|
# No tests existing
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "A Python module to make simple GUIs with Rofi";
|
|
homepage = "https://github.com/alejandrogallo/python-rofi";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.nico202 ];
|
|
};
|
|
}
|