Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / virtkey / default.nix
blobdf1d0461e434cdd6bd096e751a19924c52cc53ed
1 { stdenv, lib, buildPythonPackage, fetchurl, pkg-config, gtk2, libX11, libXtst, libXi, libxkbfile, xorgproto }:
3 let
4   majorVersion = "0.63";
5   minorVersion = "0";
6 in buildPythonPackage rec {
7   pname = "virtkey";
8   version = "${majorVersion}.${minorVersion}";
9   format = "setuptools";
11   src = fetchurl {
12     url = "https://launchpad.net/virtkey/${majorVersion}/${version}/+download/virtkey-${version}.tar.gz";
13     sha256 = "0hd99hrxn6bh3rxcrdnad5cqjsphrn1s6fzx91q07d44k6cg6qcr";
14   };
16   nativeBuildInputs = [ pkg-config ];
18   buildInputs = [ gtk2 libX11 libXtst libXi libxkbfile xorgproto ];
20   meta = with lib; {
21     broken = stdenv.isDarwin;
22     description = "Extension to emulate keypresses and to get the layout information from the X server";
23     homepage = "https://launchpad.net/virtkey";
24     license = licenses.gpl3;
25     maintainers = with maintainers; [ abbradar ];
26   };