pls_bad_pr - #1
Conversation
mana-byte
left a comment
There was a problem hiding this comment.
Test review message
Review has been Auto generated using manabyte/nixpkgs-review-quality
| pytestCheckHook, | ||
| }: | ||
|
|
||
| buildPythonPackage rec { |
There was a problem hiding this comment.
Replace 'rec' with 'finalAttrs' to use a more modern and efficient way to inherit attributes from stdenv in Nix.
| buildPythonPackage rec { | |
| buildPythonPackage (finalAttrs: { |
| src = fetchFromGitHub { | ||
| owner = "ultralytics"; | ||
| repo = "ultralytics"; | ||
| tag = "v${version}"; |
There was a problem hiding this comment.
Update the reference to 'version' to use 'finalAttrs.version' to maintain recursiveness while using finalAttrs.
| tag = "v${version}"; | |
| tag = "v${finalAttrs.version}"; |
|
|
||
| meta = { | ||
| homepage = "https://github.com/ultralytics/ultralytics"; | ||
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; |
There was a problem hiding this comment.
Update the reference to 'src.tag' to use 'finalAttrs.src.tag' to maintain recursiveness while using finalAttrs.
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; | |
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${finalAttrs.src.tag}"; |
| hash = "sha256-KyTqO5jjYXnw5xwKlvwnY99SE0zkLaz8Ck6hKb7non8="; | ||
| }; | ||
|
|
||
| nativeBuildInputs = [ setuptools ]; |
There was a problem hiding this comment.
Replace 'nativeBuildInputs' with 'build-system' to follow modern conventions for Python packages.
| nativeBuildInputs = [ setuptools ]; | |
| build-system = [ setuptools ]; |
| "numpy" | ||
| ]; | ||
|
|
||
| propagatedBuildInputs = [ |
There was a problem hiding this comment.
Replace 'propagatedBuildInputs' with 'dependencies' to follow modern conventions for Python packages.
| propagatedBuildInputs = [ | |
| dependencies = [ |
mana-byte
left a comment
There was a problem hiding this comment.
Test review message
Review has been Auto generated using manabyte/nixpkgs-review-quality
| pytestCheckHook, | ||
| }: | ||
|
|
||
| buildPythonPackage rec { |
There was a problem hiding this comment.
Replace 'rec' with 'finalAttrs' to use a more modern and efficient way to inherit attributes from stdenv in Nix.
| buildPythonPackage rec { | |
| buildPythonPackage (finalAttrs: { |
| src = fetchFromGitHub { | ||
| owner = "ultralytics"; | ||
| repo = "ultralytics"; | ||
| tag = "v${version}"; |
There was a problem hiding this comment.
Update the reference to 'version' to use 'finalAttrs.version' to maintain recursiveness while using finalAttrs.
| tag = "v${version}"; | |
| tag = "v${finalAttrs.version}"; |
|
|
||
| meta = { | ||
| homepage = "https://github.com/ultralytics/ultralytics"; | ||
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; |
There was a problem hiding this comment.
Update the reference to 'src.tag' to use 'finalAttrs.src.tag' to maintain recursiveness while using finalAttrs.
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; | |
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${finalAttrs.src.tag}"; |
| hash = "sha256-KyTqO5jjYXnw5xwKlvwnY99SE0zkLaz8Ck6hKb7non8="; | ||
| }; | ||
|
|
||
| nativeBuildInputs = [ setuptools ]; |
There was a problem hiding this comment.
Replace 'nativeBuildInputs' with 'build-system' to follow modern conventions for Python packages.
| nativeBuildInputs = [ setuptools ]; | |
| build-system = [ setuptools ]; |
| "numpy" | ||
| ]; | ||
|
|
||
| propagatedBuildInputs = [ |
There was a problem hiding this comment.
Replace 'propagatedBuildInputs' with 'dependencies' to follow modern conventions for Python packages.
| propagatedBuildInputs = [ | |
| dependencies = [ |
mana-byte
left a comment
There was a problem hiding this comment.
CLI test review message
Review has been Auto generated using manabyte/nixpkgs-review-quality
| pytestCheckHook, | ||
| }: | ||
|
|
||
| buildPythonPackage rec { |
There was a problem hiding this comment.
Replace 'rec' with 'finalAttrs' to use a more modern and efficient way to inherit attributes from stdenv in Nix.
| buildPythonPackage rec { | |
| buildPythonPackage (finalAttrs: { |
| src = fetchFromGitHub { | ||
| owner = "ultralytics"; | ||
| repo = "ultralytics"; | ||
| tag = "v${version}"; |
There was a problem hiding this comment.
Update the reference to 'version' to use 'finalAttrs.version' to maintain recursiveness while using finalAttrs.
| tag = "v${version}"; | |
| tag = "v${finalAttrs.version}"; |
|
|
||
| meta = { | ||
| homepage = "https://github.com/ultralytics/ultralytics"; | ||
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; |
There was a problem hiding this comment.
Update the reference to 'src.tag' to use 'finalAttrs.src.tag' to maintain recursiveness while using finalAttrs.
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; | |
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${finalAttrs.src.tag}"; |
| hash = "sha256-KyTqO5jjYXnw5xwKlvwnY99SE0zkLaz8Ck6hKb7non8="; | ||
| }; | ||
|
|
||
| nativeBuildInputs = [ setuptools ]; |
There was a problem hiding this comment.
Replace 'nativeBuildInputs' with 'build-system' to follow modern conventions for Python packages.
| nativeBuildInputs = [ setuptools ]; | |
| build-system = [ setuptools ]; |
| "numpy" | ||
| ]; | ||
|
|
||
| propagatedBuildInputs = [ |
There was a problem hiding this comment.
Replace 'propagatedBuildInputs' with 'dependencies' to follow modern conventions for Python packages.
| propagatedBuildInputs = [ | |
| dependencies = [ |
mana-byte
left a comment
There was a problem hiding this comment.
CLI test review message
Review has been Auto generated using manabyte/nixpkgs-review-quality
| pytestCheckHook, | ||
| }: | ||
|
|
||
| buildPythonPackage rec { |
There was a problem hiding this comment.
Replace 'rec' with 'finalAttrs' to use a more modern and efficient way to inherit attributes from stdenv in Nix.
| buildPythonPackage rec { | |
| buildPythonPackage (finalAttrs: { |
| src = fetchFromGitHub { | ||
| owner = "ultralytics"; | ||
| repo = "ultralytics"; | ||
| tag = "v${version}"; |
There was a problem hiding this comment.
Update the reference to 'version' to use 'finalAttrs.version' to maintain recursiveness while using finalAttrs.
| tag = "v${version}"; | |
| tag = "v${finalAttrs.version}"; |
|
|
||
| meta = { | ||
| homepage = "https://github.com/ultralytics/ultralytics"; | ||
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; |
There was a problem hiding this comment.
Update the reference to 'src.tag' to use 'finalAttrs.src.tag' to maintain recursiveness while using finalAttrs.
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; | |
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${finalAttrs.src.tag}"; |
| hash = "sha256-KyTqO5jjYXnw5xwKlvwnY99SE0zkLaz8Ck6hKb7non8="; | ||
| }; | ||
|
|
||
| nativeBuildInputs = [ setuptools ]; |
There was a problem hiding this comment.
Replace 'nativeBuildInputs' with 'build-system' to follow modern conventions for Python packages.
| nativeBuildInputs = [ setuptools ]; | |
| build-system = [ setuptools ]; |
| "numpy" | ||
| ]; | ||
|
|
||
| propagatedBuildInputs = [ |
There was a problem hiding this comment.
Replace 'propagatedBuildInputs' with 'dependencies' to follow modern conventions for Python packages.
| propagatedBuildInputs = [ | |
| dependencies = [ |
mana-byte
left a comment
There was a problem hiding this comment.
Test review message
Review has been Auto generated using manabyte/nixpkgs-review-quality
| pytestCheckHook, | ||
| }: | ||
|
|
||
| buildPythonPackage rec { |
There was a problem hiding this comment.
Replace 'rec' with 'finalAttrs' to use a more modern and efficient way to inherit attributes from stdenv in Nix.
| buildPythonPackage rec { | |
| buildPythonPackage (finalAttrs: { |
| src = fetchFromGitHub { | ||
| owner = "ultralytics"; | ||
| repo = "ultralytics"; | ||
| tag = "v${version}"; |
There was a problem hiding this comment.
Update the reference to 'version' to use 'finalAttrs.version' to maintain recursiveness while using finalAttrs.
| tag = "v${version}"; | |
| tag = "v${finalAttrs.version}"; |
|
|
||
| meta = { | ||
| homepage = "https://github.com/ultralytics/ultralytics"; | ||
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; |
There was a problem hiding this comment.
Update the reference to 'src.tag' to use 'finalAttrs.src.tag' to maintain recursiveness while using finalAttrs.
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; | |
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${finalAttrs.src.tag}"; |
| hash = "sha256-KyTqO5jjYXnw5xwKlvwnY99SE0zkLaz8Ck6hKb7non8="; | ||
| }; | ||
|
|
||
| nativeBuildInputs = [ setuptools ]; |
There was a problem hiding this comment.
Replace 'nativeBuildInputs' with 'build-system' to follow modern conventions for Python packages.
| nativeBuildInputs = [ setuptools ]; | |
| build-system = [ setuptools ]; |
| "numpy" | ||
| ]; | ||
|
|
||
| propagatedBuildInputs = [ |
There was a problem hiding this comment.
Replace 'propagatedBuildInputs' with 'dependencies' to follow modern conventions for Python packages.
| propagatedBuildInputs = [ | |
| dependencies = [ |
mana-byte
left a comment
There was a problem hiding this comment.
Test review message
Review has been Auto generated using manabyte/nixpkgs-review-quality
| pytestCheckHook, | ||
| }: | ||
|
|
||
| buildPythonPackage rec { |
There was a problem hiding this comment.
Replace 'rec' with 'finalAttrs' to use a more modern and efficient way to inherit attributes from stdenv in Nix.
| buildPythonPackage rec { | |
| buildPythonPackage (finalAttrs: { |
| src = fetchFromGitHub { | ||
| owner = "ultralytics"; | ||
| repo = "ultralytics"; | ||
| tag = "v${version}"; |
There was a problem hiding this comment.
Update the reference to 'version' to use 'finalAttrs.version' to maintain recursiveness while using finalAttrs.
| tag = "v${version}"; | |
| tag = "v${finalAttrs.version}"; |
|
|
||
| meta = { | ||
| homepage = "https://github.com/ultralytics/ultralytics"; | ||
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; |
There was a problem hiding this comment.
Update the reference to 'src.tag' to use 'finalAttrs.src.tag' to maintain recursiveness while using finalAttrs.
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; | |
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${finalAttrs.src.tag}"; |
| hash = "sha256-KyTqO5jjYXnw5xwKlvwnY99SE0zkLaz8Ck6hKb7non8="; | ||
| }; | ||
|
|
||
| nativeBuildInputs = [ setuptools ]; |
There was a problem hiding this comment.
Replace 'nativeBuildInputs' with 'build-system' to follow modern conventions for Python packages.
| nativeBuildInputs = [ setuptools ]; | |
| build-system = [ setuptools ]; |
| "numpy" | ||
| ]; | ||
|
|
||
| propagatedBuildInputs = [ |
There was a problem hiding this comment.
Replace 'propagatedBuildInputs' with 'dependencies' to follow modern conventions for Python packages.
| propagatedBuildInputs = [ | |
| dependencies = [ |
mana-byte
left a comment
There was a problem hiding this comment.
Test review message
Review has been Auto generated using manabyte/nixpkgs-review-quality
| pytestCheckHook, | ||
| }: | ||
|
|
||
| buildPythonPackage rec { |
There was a problem hiding this comment.
Replace 'rec' with 'finalAttrs' to use a more modern and efficient way to inherit attributes from stdenv in Nix.
| buildPythonPackage rec { | |
| buildPythonPackage (finalAttrs: { |
| src = fetchFromGitHub { | ||
| owner = "ultralytics"; | ||
| repo = "ultralytics"; | ||
| tag = "v${version}"; |
There was a problem hiding this comment.
Update the reference to 'version' to use 'finalAttrs.version' to maintain recursiveness while using finalAttrs.
| tag = "v${version}"; | |
| tag = "v${finalAttrs.version}"; |
|
|
||
| meta = { | ||
| homepage = "https://github.com/ultralytics/ultralytics"; | ||
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; |
There was a problem hiding this comment.
Update the reference to 'src.tag' to use 'finalAttrs.src.tag' to maintain recursiveness while using finalAttrs.
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; | |
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${finalAttrs.src.tag}"; |
| hash = "sha256-KyTqO5jjYXnw5xwKlvwnY99SE0zkLaz8Ck6hKb7non8="; | ||
| }; | ||
|
|
||
| nativeBuildInputs = [ setuptools ]; |
There was a problem hiding this comment.
Replace 'nativeBuildInputs' with 'build-system' to follow modern conventions for Python packages.
| nativeBuildInputs = [ setuptools ]; | |
| build-system = [ setuptools ]; |
| "numpy" | ||
| ]; | ||
|
|
||
| propagatedBuildInputs = [ |
There was a problem hiding this comment.
Replace 'propagatedBuildInputs' with 'dependencies' to follow modern conventions for Python packages.
| propagatedBuildInputs = [ | |
| dependencies = [ |
mana-byte
left a comment
There was a problem hiding this comment.
Test review message
Review has been Auto generated using manabyte/nixpkgs-review-quality
| pytestCheckHook, | ||
| }: | ||
|
|
||
| buildPythonPackage rec { |
There was a problem hiding this comment.
Replace 'rec' with 'finalAttrs' to use a more modern and efficient way to inherit attributes from stdenv in Nix.
| buildPythonPackage rec { | |
| buildPythonPackage (finalAttrs: { |
| src = fetchFromGitHub { | ||
| owner = "ultralytics"; | ||
| repo = "ultralytics"; | ||
| tag = "v${version}"; |
There was a problem hiding this comment.
Update the reference to 'version' to use 'finalAttrs.version' to maintain recursiveness while using finalAttrs.
| tag = "v${version}"; | |
| tag = "v${finalAttrs.version}"; |
|
|
||
| meta = { | ||
| homepage = "https://github.com/ultralytics/ultralytics"; | ||
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; |
There was a problem hiding this comment.
Update the reference to 'src.tag' to use 'finalAttrs.src.tag' to maintain recursiveness while using finalAttrs.
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; | |
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${finalAttrs.src.tag}"; |
| hash = "sha256-KyTqO5jjYXnw5xwKlvwnY99SE0zkLaz8Ck6hKb7non8="; | ||
| }; | ||
|
|
||
| nativeBuildInputs = [ setuptools ]; |
There was a problem hiding this comment.
Replace 'nativeBuildInputs' with 'build-system' to follow modern conventions for Python packages.
| nativeBuildInputs = [ setuptools ]; | |
| build-system = [ setuptools ]; |
| "numpy" | ||
| ]; | ||
|
|
||
| propagatedBuildInputs = [ |
There was a problem hiding this comment.
Replace 'propagatedBuildInputs' with 'dependencies' to follow modern conventions for Python packages.
| propagatedBuildInputs = [ | |
| dependencies = [ |
mana-byte
left a comment
There was a problem hiding this comment.
CLI test review message
Review has been Auto generated using manabyte/nixpkgs-review-quality
| pytestCheckHook, | ||
| }: | ||
|
|
||
| buildPythonPackage rec { |
There was a problem hiding this comment.
Replace 'rec' with 'finalAttrs' to use a more modern and efficient way to inherit attributes from stdenv in Nix.
| buildPythonPackage rec { | |
| buildPythonPackage (finalAttrs: { |
| src = fetchFromGitHub { | ||
| owner = "ultralytics"; | ||
| repo = "ultralytics"; | ||
| tag = "v${version}"; |
There was a problem hiding this comment.
Update the reference to 'version' to use 'finalAttrs.version' to maintain recursiveness while using finalAttrs.
| tag = "v${version}"; | |
| tag = "v${finalAttrs.version}"; |
|
|
||
| meta = { | ||
| homepage = "https://github.com/ultralytics/ultralytics"; | ||
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; |
There was a problem hiding this comment.
Update the reference to 'src.tag' to use 'finalAttrs.src.tag' to maintain recursiveness while using finalAttrs.
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; | |
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${finalAttrs.src.tag}"; |
| hash = "sha256-KyTqO5jjYXnw5xwKlvwnY99SE0zkLaz8Ck6hKb7non8="; | ||
| }; | ||
|
|
||
| nativeBuildInputs = [ setuptools ]; |
There was a problem hiding this comment.
Replace 'nativeBuildInputs' with 'build-system' to follow modern conventions for Python packages.
| nativeBuildInputs = [ setuptools ]; | |
| build-system = [ setuptools ]; |
| "numpy" | ||
| ]; | ||
|
|
||
| propagatedBuildInputs = [ |
There was a problem hiding this comment.
Replace 'propagatedBuildInputs' with 'dependencies' to follow modern conventions for Python packages.
| propagatedBuildInputs = [ | |
| dependencies = [ |
mana-byte
left a comment
There was a problem hiding this comment.
Test review message
Review has been Auto generated using manabyte/nixpkgs-review-quality
| pytestCheckHook, | ||
| }: | ||
|
|
||
| buildPythonPackage rec { |
There was a problem hiding this comment.
Replace 'rec' with 'finalAttrs' to use a more modern and efficient way to inherit attributes from stdenv in Nix.
| buildPythonPackage rec { | |
| buildPythonPackage (finalAttrs: { |
| src = fetchFromGitHub { | ||
| owner = "ultralytics"; | ||
| repo = "ultralytics"; | ||
| tag = "v${version}"; |
There was a problem hiding this comment.
Update the reference to 'version' to use 'finalAttrs.version' to maintain recursiveness while using finalAttrs.
| tag = "v${version}"; | |
| tag = "v${finalAttrs.version}"; |
|
|
||
| meta = { | ||
| homepage = "https://github.com/ultralytics/ultralytics"; | ||
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; |
There was a problem hiding this comment.
Update the reference to 'src.tag' to use 'finalAttrs.src.tag' to maintain recursiveness while using finalAttrs.
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; | |
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${finalAttrs.src.tag}"; |
| hash = "sha256-KyTqO5jjYXnw5xwKlvwnY99SE0zkLaz8Ck6hKb7non8="; | ||
| }; | ||
|
|
||
| nativeBuildInputs = [ setuptools ]; |
There was a problem hiding this comment.
Replace 'nativeBuildInputs' with 'build-system' to follow modern conventions for Python packages.
| nativeBuildInputs = [ setuptools ]; | |
| build-system = [ setuptools ]; |
| "numpy" | ||
| ]; | ||
|
|
||
| propagatedBuildInputs = [ |
There was a problem hiding this comment.
Replace 'propagatedBuildInputs' with 'dependencies' to follow modern conventions for Python packages.
| propagatedBuildInputs = [ | |
| dependencies = [ |
mana-byte
left a comment
There was a problem hiding this comment.
CLI test review message
Review has been Auto generated using manabyte/nixpkgs-review-quality
| pytestCheckHook, | ||
| }: | ||
|
|
||
| buildPythonPackage rec { |
There was a problem hiding this comment.
Replace 'rec' with 'finalAttrs' to use a more modern and efficient way to inherit attributes from stdenv in Nix.
| buildPythonPackage rec { | |
| buildPythonPackage (finalAttrs: { |
| src = fetchFromGitHub { | ||
| owner = "ultralytics"; | ||
| repo = "ultralytics"; | ||
| tag = "v${version}"; |
There was a problem hiding this comment.
Update the reference to 'version' to use 'finalAttrs.version' to maintain recursiveness while using finalAttrs.
| tag = "v${version}"; | |
| tag = "v${finalAttrs.version}"; |
|
|
||
| meta = { | ||
| homepage = "https://github.com/ultralytics/ultralytics"; | ||
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; |
There was a problem hiding this comment.
Update the reference to 'src.tag' to use 'finalAttrs.src.tag' to maintain recursiveness while using finalAttrs.
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; | |
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${finalAttrs.src.tag}"; |
| hash = "sha256-KyTqO5jjYXnw5xwKlvwnY99SE0zkLaz8Ck6hKb7non8="; | ||
| }; | ||
|
|
||
| nativeBuildInputs = [ setuptools ]; |
There was a problem hiding this comment.
Replace 'nativeBuildInputs' with 'build-system' to follow modern conventions for Python packages.
| nativeBuildInputs = [ setuptools ]; | |
| build-system = [ setuptools ]; |
| "numpy" | ||
| ]; | ||
|
|
||
| propagatedBuildInputs = [ |
There was a problem hiding this comment.
Replace 'propagatedBuildInputs' with 'dependencies' to follow modern conventions for Python packages.
| propagatedBuildInputs = [ | |
| dependencies = [ |
mana-byte
left a comment
There was a problem hiding this comment.
Test review message
Review has been Auto generated using manabyte/nixpkgs-review-quality
| pytestCheckHook, | ||
| }: | ||
|
|
||
| buildPythonPackage rec { |
There was a problem hiding this comment.
Replace 'rec' with 'finalAttrs' to use a more modern and efficient way to inherit attributes from stdenv in Nix.
| buildPythonPackage rec { | |
| buildPythonPackage (finalAttrs: { |
| src = fetchFromGitHub { | ||
| owner = "ultralytics"; | ||
| repo = "ultralytics"; | ||
| tag = "v${version}"; |
There was a problem hiding this comment.
Update the reference to 'version' to use 'finalAttrs.version' to maintain recursiveness while using finalAttrs.
| tag = "v${version}"; | |
| tag = "v${finalAttrs.version}"; |
|
|
||
| meta = { | ||
| homepage = "https://github.com/ultralytics/ultralytics"; | ||
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; |
There was a problem hiding this comment.
Update the reference to 'src.tag' to use 'finalAttrs.src.tag' to maintain recursiveness while using finalAttrs.
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; | |
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${finalAttrs.src.tag}"; |
| hash = "sha256-KyTqO5jjYXnw5xwKlvwnY99SE0zkLaz8Ck6hKb7non8="; | ||
| }; | ||
|
|
||
| nativeBuildInputs = [ setuptools ]; |
There was a problem hiding this comment.
Replace 'nativeBuildInputs' with 'build-system' to follow modern conventions for Python packages.
| nativeBuildInputs = [ setuptools ]; | |
| build-system = [ setuptools ]; |
| "numpy" | ||
| ]; | ||
|
|
||
| propagatedBuildInputs = [ |
There was a problem hiding this comment.
Replace 'propagatedBuildInputs' with 'dependencies' to follow modern conventions for Python packages.
| propagatedBuildInputs = [ | |
| dependencies = [ |
mana-byte
left a comment
There was a problem hiding this comment.
CLI test review message
Review has been Auto generated using manabyte/nixpkgs-review-quality
| pytestCheckHook, | ||
| }: | ||
|
|
||
| buildPythonPackage rec { |
There was a problem hiding this comment.
Replace 'rec' with 'finalAttrs' to use a more modern and efficient way to inherit attributes from stdenv in Nix.
| buildPythonPackage rec { | |
| buildPythonPackage (finalAttrs: { |
| src = fetchFromGitHub { | ||
| owner = "ultralytics"; | ||
| repo = "ultralytics"; | ||
| tag = "v${version}"; |
There was a problem hiding this comment.
Update the reference to 'version' to use 'finalAttrs.version' to maintain recursiveness while using finalAttrs.
| tag = "v${version}"; | |
| tag = "v${finalAttrs.version}"; |
|
|
||
| meta = { | ||
| homepage = "https://github.com/ultralytics/ultralytics"; | ||
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; |
There was a problem hiding this comment.
Update the reference to 'src.tag' to use 'finalAttrs.src.tag' to maintain recursiveness while using finalAttrs.
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; | |
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${finalAttrs.src.tag}"; |
| hash = "sha256-KyTqO5jjYXnw5xwKlvwnY99SE0zkLaz8Ck6hKb7non8="; | ||
| }; | ||
|
|
||
| nativeBuildInputs = [ setuptools ]; |
There was a problem hiding this comment.
Replace 'nativeBuildInputs' with 'build-system' to follow modern conventions for Python packages.
| nativeBuildInputs = [ setuptools ]; | |
| build-system = [ setuptools ]; |
| "numpy" | ||
| ]; | ||
|
|
||
| propagatedBuildInputs = [ |
There was a problem hiding this comment.
Replace 'propagatedBuildInputs' with 'dependencies' to follow modern conventions for Python packages.
| propagatedBuildInputs = [ | |
| dependencies = [ |
mana-byte
left a comment
There was a problem hiding this comment.
Test review message
Review has been Auto generated using manabyte/nixpkgs-review-quality
| pytestCheckHook, | ||
| }: | ||
|
|
||
| buildPythonPackage rec { |
There was a problem hiding this comment.
Replace 'rec' with 'finalAttrs' to use a more modern and efficient way to inherit attributes from stdenv in Nix.
| buildPythonPackage rec { | |
| buildPythonPackage (finalAttrs: { |
| src = fetchFromGitHub { | ||
| owner = "ultralytics"; | ||
| repo = "ultralytics"; | ||
| tag = "v${version}"; |
There was a problem hiding this comment.
Update the reference to 'version' to use 'finalAttrs.version' to maintain recursiveness while using finalAttrs.
| tag = "v${version}"; | |
| tag = "v${finalAttrs.version}"; |
|
|
||
| meta = { | ||
| homepage = "https://github.com/ultralytics/ultralytics"; | ||
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; |
There was a problem hiding this comment.
Update the reference to 'src.tag' to use 'finalAttrs.src.tag' to maintain recursiveness while using finalAttrs.
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; | |
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${finalAttrs.src.tag}"; |
| hash = "sha256-KyTqO5jjYXnw5xwKlvwnY99SE0zkLaz8Ck6hKb7non8="; | ||
| }; | ||
|
|
||
| nativeBuildInputs = [ setuptools ]; |
There was a problem hiding this comment.
Replace 'nativeBuildInputs' with 'build-system' to follow modern conventions for Python packages.
| nativeBuildInputs = [ setuptools ]; | |
| build-system = [ setuptools ]; |
| "numpy" | ||
| ]; | ||
|
|
||
| propagatedBuildInputs = [ |
There was a problem hiding this comment.
Replace 'propagatedBuildInputs' with 'dependencies' to follow modern conventions for Python packages.
| propagatedBuildInputs = [ | |
| dependencies = [ |
mana-byte
left a comment
There was a problem hiding this comment.
CLI test review message
Review has been Auto generated using manabyte/nixpkgs-review-quality
mana-byte
left a comment
There was a problem hiding this comment.
Test review message
Review has been Auto generated using manabyte/nixpkgs-review-quality
mana-byte
left a comment
There was a problem hiding this comment.
CLI test review message
Review has been Auto generated using manabyte/nixpkgs-review-quality
| pytestCheckHook, | ||
| }: | ||
|
|
||
| buildPythonPackage rec { |
There was a problem hiding this comment.
Replace 'rec' with 'finalAttrs' to use a more modern and efficient way to inherit attributes from stdenv in Nix.
| buildPythonPackage rec { | |
| buildPythonPackage (finalAttrs: { |
| src = fetchFromGitHub { | ||
| owner = "ultralytics"; | ||
| repo = "ultralytics"; | ||
| tag = "v${version}"; |
There was a problem hiding this comment.
Update the reference to 'version' to use 'finalAttrs.version' to maintain recursiveness while using finalAttrs.
| tag = "v${version}"; | |
| tag = "v${finalAttrs.version}"; |
|
|
||
| meta = { | ||
| homepage = "https://github.com/ultralytics/ultralytics"; | ||
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; |
There was a problem hiding this comment.
Update the reference to 'src.tag' to use 'finalAttrs.src.tag' to maintain recursiveness while using finalAttrs.
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; | |
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${finalAttrs.src.tag}"; |
| hash = "sha256-KyTqO5jjYXnw5xwKlvwnY99SE0zkLaz8Ck6hKb7non8="; | ||
| }; | ||
|
|
||
| nativeBuildInputs = [ setuptools ]; |
There was a problem hiding this comment.
Replace 'nativeBuildInputs' with 'build-system' to follow modern conventions for Python packages.
| nativeBuildInputs = [ setuptools ]; | |
| build-system = [ setuptools ]; |
| "numpy" | ||
| ]; | ||
|
|
||
| propagatedBuildInputs = [ |
There was a problem hiding this comment.
Replace 'propagatedBuildInputs' with 'dependencies' to follow modern conventions for Python packages.
| propagatedBuildInputs = [ | |
| dependencies = [ |
mana-byte
left a comment
There was a problem hiding this comment.
Test review message
Review has been Auto generated using manabyte/nixpkgs-review-quality
| pytestCheckHook, | ||
| }: | ||
|
|
||
| buildPythonPackage rec { |
There was a problem hiding this comment.
Replace 'rec' with 'finalAttrs' to use a more modern and efficient way to inherit attributes from stdenv in Nix.
| buildPythonPackage rec { | |
| buildPythonPackage (finalAttrs: { |
| src = fetchFromGitHub { | ||
| owner = "ultralytics"; | ||
| repo = "ultralytics"; | ||
| tag = "v${version}"; |
There was a problem hiding this comment.
Update the reference to 'version' to use 'finalAttrs.version' to maintain recursiveness while using finalAttrs.
| tag = "v${version}"; | |
| tag = "v${finalAttrs.version}"; |
|
|
||
| meta = { | ||
| homepage = "https://github.com/ultralytics/ultralytics"; | ||
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; |
There was a problem hiding this comment.
Update the reference to 'src.tag' to use 'finalAttrs.src.tag' to maintain recursiveness while using finalAttrs.
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; | |
| changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${finalAttrs.src.tag}"; |
| hash = "sha256-KyTqO5jjYXnw5xwKlvwnY99SE0zkLaz8Ck6hKb7non8="; | ||
| }; | ||
|
|
||
| nativeBuildInputs = [ setuptools ]; |
There was a problem hiding this comment.
Replace 'nativeBuildInputs' with 'build-system' to follow modern conventions for Python packages.
| nativeBuildInputs = [ setuptools ]; | |
| build-system = [ setuptools ]; |
| "numpy" | ||
| ]; | ||
|
|
||
| propagatedBuildInputs = [ |
There was a problem hiding this comment.
Replace 'propagatedBuildInputs' with 'dependencies' to follow modern conventions for Python packages.
| propagatedBuildInputs = [ | |
| dependencies = [ |
Things done
This PR is a test pr for https://github.com/mana-byte/nixpkgs-review-quality
passthru.tests.nixpkgs-reviewon this PR. See nixpkgs-review usage../result/bin/.