Unverified Commit fcfec617 authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

various: migrate python3Packages to by-name (#454647)

parents acbca925 38f3ca74
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
{
  lib,
  buildPythonApplication,
  python3Packages,
  fetchFromGitHub,
  fetchpatch,
  setuptools,
  boto3,
}:

buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
  pname = "aws-mfa";
  version = "0.0.12";
  pyproject = true;
@@ -28,11 +26,11 @@ buildPythonApplication rec {
    })
  ];

  build-system = [
  build-system = with python3Packages; [
    setuptools
  ];

  dependencies = [
  dependencies = with python3Packages; [
    boto3
  ];

+4 −11
Original line number Diff line number Diff line
{
  buildPythonPackage,
  python3Packages,
  fetchPypi,
  lib,
  iverilog,
  verilator,
  gnumake,
  edalize,
  fastjsonschema,
  pyparsing,
  pyyaml,
  simplesat,
  ipyxact,
  setuptools-scm,
}:
buildPythonPackage rec {
python3Packages.buildPythonPackage rec {
  pname = "fusesoc";
  version = "2.2.1";
  format = "setuptools";
@@ -23,9 +16,9 @@ buildPythonPackage rec {
    hash = "sha256-M36bXBgY8hR33AVDlHoH8PZJG2Bi0KOEI07IMns7R4w=";
  };

  nativeBuildInputs = [ setuptools-scm ];
  nativeBuildInputs = with python3Packages; [ setuptools-scm ];

  propagatedBuildInputs = [
  dependencies = with python3Packages; [
    edalize
    fastjsonschema
    pyparsing
+4 −11
Original line number Diff line number Diff line
{
  lib,
  annexremote,
  buildPythonApplication,
  drivelib,
  python3Packages,
  fetchPypi,
  gitpython,
  humanfriendly,
  tenacity,
  setuptools,
  distutils,
}:

buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
  pname = "git-annex-remote-googledrive";
  version = "1.3.2";
  pyproject = true;
@@ -21,9 +14,9 @@ buildPythonApplication rec {
    sha256 = "0rwjcdvfgzdlfgrn1rrqwwwiqqzyh114qddrbfwd46ld5spry6r1";
  };

  build-system = [ setuptools ];
  build-system = with python3Packages; [ setuptools ];

  propagatedBuildInputs = [
  dependencies = with python3Packages; [
    annexremote
    drivelib
    gitpython
+3 −5
Original line number Diff line number Diff line
{
  lib,
  buildPythonApplication,
  python3Packages,
  fetchFromGitHub,
  pyyaml,
  setuptools,
  installShellFiles,
}:

buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
  version = "0.16.6.1";
  format = "setuptools";
  pname = "gita";
@@ -19,7 +17,7 @@ buildPythonApplication rec {
    owner = "nosarthur";
  };

  propagatedBuildInputs = [
  dependencies = with python3Packages; [
    pyyaml
    setuptools
  ];
+3 −5
Original line number Diff line number Diff line
{
  stdenv,
  lib,
  buildPythonApplication,
  python3Packages,
  fetchPypi,
  fusepy,
  pyserial,
}:

buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
  pname = "mpy-utils";
  version = "0.1.13";
  format = "setuptools";
@@ -17,7 +15,7 @@ buildPythonApplication rec {
    hash = "sha256-die8hseaidhs9X7mfFvV8C8zn0uyw08gcHNqmjl+2Z4=";
  };

  propagatedBuildInputs = [
  propagatedBuildInputs = with python3Packages; [
    fusepy
    pyserial
  ];
Loading