Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b54c60b68951
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f8df74be4b4b
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 21, 2020

  1. vncdo: fix build

    zimbatm committed Jan 21, 2020

    Unverified

    The email in this signature doesn’t match the committer email.
    Copy the full SHA
    f8df74b View commit details
Showing with 5 additions and 3 deletions.
  1. +5 −3 pkgs/tools/admin/vncdo/default.nix
8 changes: 5 additions & 3 deletions pkgs/tools/admin/vncdo/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub
, pythonPackages
, python2Packages
}:
pythonPackages.buildPythonPackage {
python2Packages.buildPythonPackage {
pname = "vncdo";
version = "0.11.2";

@@ -12,14 +12,16 @@ pythonPackages.buildPythonPackage {
sha256 = "0k03b09ipsz8vp362x7sx7z68mxgqw9qzvkii2f8j9vx2y79rjsh";
};

propagatedBuildInputs = with pythonPackages; [
propagatedBuildInputs = with python2Packages; [
pillow
twisted
pexpect
nose
ptyprocess
];

doCheck = false;

meta = with stdenv.lib; {
homepage = https://github.com/sibson/vncdotool;
description = "A command line VNC client and python library";