Merge pull request #172974 from dotlambda/xdot-interpreter

python3Packages.xdot: use correct interpreter
This commit is contained in:
Jörg Thalheim 2022-05-14 06:55:39 +01:00 committed by GitHub
commit 5b3d612f76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k, python3, xvfb-run
{ lib, buildPythonPackage, fetchPypi, isPy3k, python, xvfb-run
, wrapGAppsHook, gobject-introspection, pygobject3, graphviz, gtk3, numpy }:
buildPythonPackage rec {
@ -20,7 +20,7 @@ buildPythonPackage rec {
'';
checkPhase = ''
xvfb-run -s '-screen 0 800x600x24' ${python3.interpreter} nix_run_setup test
xvfb-run -s '-screen 0 800x600x24' ${python.interpreter} nix_run_setup test
'';
# https://github.com/NixOS/nixpkgs/pull/107872#issuecomment-752175866