Skip to content

Commit 426b2ed

Browse files
committedDec 25, 2016
pythonPackages.u-msgpack-python: use python.interpreter
1 parent b20fdff commit 426b2ed

File tree

1 file changed

+3
-2
lines changed
  • pkgs/development/python-modules/u-msgpack-python

1 file changed

+3
-2
lines changed
 

‎pkgs/development/python-modules/u-msgpack-python/default.nix

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
, lib
33
, fetchurl
44
, glibcLocales
5+
, python
56
}:
67

78
let
@@ -20,7 +21,7 @@ in buildPythonPackage rec {
2021
buildInputs = [ glibcLocales ];
2122

2223
checkPhase = ''
23-
python -m unittest discover
24+
${python.interpreter} -m unittest discover
2425
'';
2526

2627
meta = {
@@ -29,4 +30,4 @@ in buildPythonPackage rec {
2930
license = lib.licenses.mit;
3031
};
3132

32-
}
33+
}

0 commit comments

Comments
 (0)
Please sign in to comment.