mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
dmenu-python: init at 0.2.1
This commit is contained in:
parent
af45f08f07
commit
7c14e8ba04
2 changed files with 26 additions and 0 deletions
24
pkgs/development/python-modules/dmenu/default.nix
Normal file
24
pkgs/development/python-modules/dmenu/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{ 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 = http://dmenu.readthedocs.io;
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = [ lib.maintainers.nico202 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3922,6 +3922,8 @@ in {
|
||||||
|
|
||||||
discogs_client = callPackage ../development/python-modules/discogs_client { };
|
discogs_client = callPackage ../development/python-modules/discogs_client { };
|
||||||
|
|
||||||
|
dmenu-python = callPackage ../development/python-modules/dmenu { };
|
||||||
|
|
||||||
dnspython = callPackage ../development/python-modules/dnspython { };
|
dnspython = callPackage ../development/python-modules/dnspython { };
|
||||||
dns = self.dnspython; # Alias for compatibility, 2017-12-10
|
dns = self.dnspython; # Alias for compatibility, 2017-12-10
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue