gixy: use python3
This commit is contained in:
parent
f680a0f2a1
commit
06352b165d
@ -1,11 +1,11 @@
|
|||||||
{ lib, fetchFromGitHub, python }:
|
{ lib, fetchFromGitHub, python3 }:
|
||||||
|
|
||||||
python.pkgs.buildPythonApplication rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
pname = "gixy";
|
pname = "gixy";
|
||||||
version = "0.1.20";
|
version = "0.1.20";
|
||||||
|
|
||||||
# package is only compatible with python 2.7 and 3.5+
|
# package is only compatible with python 2.7 and 3.5+
|
||||||
disabled = with python.pkgs; !(pythonAtLeast "3.5" || isPy27);
|
disabled = with python3.pkgs; !(pythonAtLeast "3.5" || isPy27);
|
||||||
|
|
||||||
# fetching from GitHub because the PyPi source is missing the tests
|
# fetching from GitHub because the PyPi source is missing the tests
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
@ -19,7 +19,7 @@ python.pkgs.buildPythonApplication rec {
|
|||||||
sed -ie '/argparse/d' setup.py
|
sed -ie '/argparse/d' setup.py
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = with python.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
cached-property
|
cached-property
|
||||||
ConfigArgParse
|
ConfigArgParse
|
||||||
pyparsing
|
pyparsing
|
||||||
|
Loading…
x
Reference in New Issue
Block a user