Compare commits

4 Commits

Author SHA1 Message Date
ac27bd0bec amdgpu-fan: force setuptools build
Some checks failed
CI / checks (nur) (push) Successful in 3m42s
CI / build-and-update (xeals, xeals) (push) Failing after 3m22s
2025-07-19 16:14:58 +10:00
6df2a1a659 spotify-ripper: force setuptools build 2025-07-19 16:14:58 +10:00
5a6dd50718 mopidy-subidy: force setuptools build 2025-07-19 16:14:58 +10:00
67d062e9b0 flake: update inputs 2025-07-19 16:14:58 +10:00
4 changed files with 9 additions and 3 deletions

6
flake.lock generated
View File

@@ -20,11 +20,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1741865919, "lastModified": 1752841793,
"narHash": "sha256-4thdbnP6dlbdq+qZWTsm4ffAwoS8Tiq1YResB+RP6WE=", "narHash": "sha256-pGvcN/yiJ4e3/hgvTwkyZvl6c3HuLLCY/hjEzDuQB54=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "573c650e8a14b2faa0041645ab18aed7e60f0c9a", "rev": "8131c0ea9df6293a247be743a387ff725e464db7",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -18,6 +18,8 @@ python3Packages.buildPythonApplication rec {
propagatedBuildInputs = [ mopidy python3Packages.py-sonic ]; propagatedBuildInputs = [ mopidy python3Packages.py-sonic ];
format = "setuptools";
doCheck = false; doCheck = false;
meta = with lib; { meta = with lib; {

View File

@@ -20,6 +20,8 @@ python3Packages.buildPythonApplication rec {
pyyaml pyyaml
]; ];
format = "setuptools";
patchPhase = '' patchPhase = ''
substituteInPlace setup.py \ substituteInPlace setup.py \
--replace PROJECTVERSION "${version}" --replace PROJECTVERSION "${version}"

View File

@@ -55,6 +55,8 @@ python3Packages.buildPythonApplication rec {
(if opusSupport then opusTools else null) (if opusSupport then opusTools else null)
]; ];
format = "setuptools";
# Remove impure executables. # Remove impure executables.
patches = [ ./fix-setup.patch ]; patches = [ ./fix-setup.patch ];