vncdo: fix build

This commit is contained in:
zimbatm 2020-01-10 21:02:44 +01:00
parent b54c60b689
commit f8df74be4b
No known key found for this signature in database
GPG Key ID: 71BAF6D40C1D63D7

View File

@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub
, pythonPackages
, python2Packages
}:
pythonPackages.buildPythonPackage {
python2Packages.buildPythonPackage {
pname = "vncdo";
version = "0.11.2";
@ -12,7 +12,7 @@ pythonPackages.buildPythonPackage {
sha256 = "0k03b09ipsz8vp362x7sx7z68mxgqw9qzvkii2f8j9vx2y79rjsh";
};
propagatedBuildInputs = with pythonPackages; [
propagatedBuildInputs = with python2Packages; [
pillow
twisted
pexpect
@ -20,6 +20,8 @@ pythonPackages.buildPythonPackage {
ptyprocess
];
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/sibson/vncdotool;
description = "A command line VNC client and python library";