Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d3881bfcb38a
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 33913f22bd6a
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 24, 2018

  1. xdot: disable for python 2.x

    It just fails at runtime otherwise.
    
    (cherry picked from commit 701f222)
    lheckemann authored and Mic92 committed Apr 24, 2018
    Copy the full SHA
    33913f2 View commit details
Showing with 3 additions and 1 deletion.
  1. +3 −1 pkgs/development/python-modules/xdot/default.nix
4 changes: 3 additions & 1 deletion pkgs/development/python-modules/xdot/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi
{ lib, buildPythonPackage, fetchPypi, isPy3k
, wrapGAppsHook, gobjectIntrospection, pygobject3, graphviz, gnome3 }:

buildPythonPackage rec {
@@ -10,6 +10,8 @@ buildPythonPackage rec {
sha256 = "01v9vmgdxz1q2m2vq2b4aqx4ycw7grc0l4is673ygvyg9rk02dx3";
};

disabled = !isPy3k;

nativeBuildInputs = [ wrapGAppsHook ];
propagatedBuildInputs = [ gobjectIntrospection pygobject3 graphviz gnome3.gtk ];