Unverified Commit 1f4b80d5 authored by Michael Daniels's avatar Michael Daniels Committed by GitHub
Browse files

treewide: change `format = "pyproject"/"other";` to `pyproject = true/false;` (#479499)

parents 2daa9dc7 5ed07317
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ python3Packages.buildPythonApplication rec {
  pname = "manuskript";
  version = "0.17.0";

  format = "other";
  pyproject = false;

  src = fetchFromGitHub {
    repo = "manuskript";
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ buildPythonApplication rec {

  propagatedBuildInputs = [ pybluez ];

  format = "other";
  pyproject = false;

  installPhase = ''
    mkdir -p $out/bin
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
buildPythonApplication {
  pname = "cambrinary";
  version = "unstable-2023-07-16";
  format = "pyproject";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "xueyuanl";
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ python3Packages.buildPythonApplication rec {
  pname = "dupeguru";
  version = "4.3.1";

  format = "other";
  pyproject = false;

  src = fetchFromGitHub {
    owner = "arsenetar";
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@
python3Packages.buildPythonApplication rec {
  pname = "polychromatic";
  version = "0.9.3";
  format = "other";
  pyproject = false;

  src = fetchFromGitHub {
    owner = "polychromatic";
Loading