My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/papis-python-rofi/default.nix

21 lines
523 B

{ 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 ];
};
}