Unverified Commit 50d5bc7b authored by éclairevoyant's avatar éclairevoyant
Browse files

treewide: replace python3 with python within python package set

parent b73a0183
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@
  packaging,
  pathspec,
  protobuf,
  python3,
  python,
  pythonOlder,
  pytz,
  pyyaml,
@@ -85,7 +85,7 @@ buildPythonPackage rec {
  doCheck = false;

  passthru = {
    withAdapters = python3.pkgs.callPackage ./with-adapters.nix { };
    withAdapters = python.pkgs.callPackage ./with-adapters.nix { };
  };

  meta = with lib; {
+2 −2
Original line number Diff line number Diff line
{
  python3,
  python,
  dbt-bigquery,
  dbt-core,
  dbt-postgres,
@@ -17,7 +17,7 @@ let
  };
in
adapterFun:
(python3.buildEnv.override {
(python.buildEnv.override {
  extraLibs = [ dbt-core ] ++ (adapterFun adapters);
  ignoreCollisions = true;
}).overrideAttrs
+2 −2
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  python3,
  python,
  pythonOlder,
  django,
  hatchling,
@@ -38,7 +38,7 @@ buildPythonPackage {

  checkPhase = ''
    runHook preCheck
    ${python3.interpreter} manage.py test testapp
    ${python.interpreter} manage.py test testapp
    runHook postCheck
  '';

+2 −2
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
  icu,
  pkg-config,
  fetchFromGitHub,
  python3,
  python,
  openblas,
  zlib,
  gfortran,
@@ -56,7 +56,7 @@ stdenv.mkDerivation rec {

  nativeBuildInputs = [
    pkg-config
    python3
    python
    gfortran
  ];

+2 −2
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
  fetchFromGitHub,
  isPyPy,
  ordered-set,
  python3,
  python,
  setuptools,
  zstandard,
  wheel,
@@ -40,7 +40,7 @@ buildPythonPackage rec {
  checkPhase = ''
    runHook preCheck

    ${python3.interpreter} tests/basics/run_all.py search
    ${python.interpreter} tests/basics/run_all.py search

    runHook postCheck
  '';
Loading