9367367dfd
Permanent redirects on homepages and/or source URLs as reported by Repology
25 lines
528 B
Nix
25 lines
528 B
Nix
{ 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 ];
|
|
};
|
|
}
|