summary refs log tree commit diff
path: root/pkgs/applications/audio/friture/default.nix
diff options
context:
space:
mode:
authorAlexandra <74795488+alyaeanyx@users.noreply.github.com>2022-03-21 22:01:47 +0100
committerGitHub <noreply@github.com>2022-03-21 22:01:47 +0100
commitc2789917a6cbbed245a1ab7a517fd919bac112bc (patch)
tree4dd2ed61a246dcad22d8fa4053cafd8a47cee675 /pkgs/applications/audio/friture/default.nix
parentae1a4700452ff572082a05dceba635f04367288d (diff)
downloadnixpkgs-c2789917a6cbbed245a1ab7a517fd919bac112bc.tar
nixpkgs-c2789917a6cbbed245a1ab7a517fd919bac112bc.tar.gz
nixpkgs-c2789917a6cbbed245a1ab7a517fd919bac112bc.tar.bz2
nixpkgs-c2789917a6cbbed245a1ab7a517fd919bac112bc.tar.lz
nixpkgs-c2789917a6cbbed245a1ab7a517fd919bac112bc.tar.xz
nixpkgs-c2789917a6cbbed245a1ab7a517fd919bac112bc.tar.zst
nixpkgs-c2789917a6cbbed245a1ab7a517fd919bac112bc.zip
friture: 0.48 -> 0.49 (#164475)
Diffstat (limited to 'pkgs/applications/audio/friture/default.nix')
-rw-r--r--pkgs/applications/audio/friture/default.nix15
1 files changed, 3 insertions, 12 deletions
diff --git a/pkgs/applications/audio/friture/default.nix b/pkgs/applications/audio/friture/default.nix
index 7918ea17891..bb92af2dd5c 100644
--- a/pkgs/applications/audio/friture/default.nix
+++ b/pkgs/applications/audio/friture/default.nix
@@ -1,16 +1,16 @@
-{ lib, fetchFromGitHub, fetchpatch, python3Packages, wrapQtAppsHook }:
+{ lib, fetchFromGitHub, python3Packages, wrapQtAppsHook }:
 
 let
   py = python3Packages;
 in py.buildPythonApplication rec {
   pname = "friture";
-  version = "0.48";
+  version = "0.49";
 
   src = fetchFromGitHub {
     owner = "tlecomte";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-oOH58jD49xAeSuP+l6tYUpwkYsnfeSGTt8x4DFzTY6g=";
+    sha256 = "sha256-xKgyBV/Qc+9PgXyxcT0xG1GXLC6KnjavJ/0SUE+9VSY=";
   };
 
   nativeBuildInputs = (with py; [ numpy cython scipy ]) ++
@@ -28,15 +28,6 @@ in py.buildPythonApplication rec {
     rtmixer
   ];
 
-  patches = [
-    # Backported fix that resolves an issue with setuptools packaging
-    (fetchpatch {
-      name = "fix-setuptools-packaging.patch";
-      url = "https://github.com/tlecomte/friture/commit/ea7210dae883edf17de8fec82f9428b18ee138b6.diff";
-      sha256 = "sha256-Kv/vmC8kcqfOgfIPQyZN46sbV6bezhq6pyj8bvke6s8=";
-    })
-  ];
-
   postPatch = ''
     # Remove version constraints from Python dependencies in setup.py
     sed -i -E "s/\"([A-Za-z0-9]+)(=|>|<)=[0-9\.]+\"/\"\1\"/g" setup.py