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/dmenu/default.nix

24 lines
530 B

{ buildPythonPackage, lib, fetchPypi, dmenu }:
buildPythonPackage rec {
pname = "dmenu-python";
version = "0.2.1";
src = fetchPypi {
inherit version;
pname = "dmenu";
sha256 = "06v2fq0ciallbib7sbk4kncj0n3gdqp1kz8n5k2669x49wyh34wm";
};
propagatedBuildInputs = [ dmenu ];
# No tests existing
doCheck = false;
meta = {
description = "A Python wrapper for dmenu";
homepage = "https://dmenu.readthedocs.io";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.nico202 ];
};
}