about summary refs log tree commit diff stats
path: root/package
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-08-22 20:17:59 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-08-22 20:18:23 +0200
commit07fe26382e7a13a3a14a664345f73d97039d0b03 (patch)
tree94bd1c5ce8050c21c49fa266746dad3e87e29242 /package
parentchore(version): v1.0.0 (diff)
downloadyt-07fe26382e7a13a3a14a664345f73d97039d0b03.tar.gz
yt-07fe26382e7a13a3a14a664345f73d97039d0b03.zip
fix(package): Actually provide the blake3 library to the python interpreter
Diffstat (limited to 'package')
-rw-r--r--package/blake3/blake3.nix1
-rw-r--r--package/package.nix2
2 files changed, 1 insertions, 2 deletions
diff --git a/package/blake3/blake3.nix b/package/blake3/blake3.nix
index c13824a..74a393b 100644
--- a/package/blake3/blake3.nix
+++ b/package/blake3/blake3.nix
@@ -8,7 +8,6 @@
 # You should have received a copy of the License along with this program.
 # If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
 {
-  lib,
   python3Packages,
   rustPlatform,
   fetchFromGitHub,
diff --git a/package/package.nix b/package/package.nix
index c0b4718..efadab8 100644
--- a/package/package.nix
+++ b/package/package.nix
@@ -24,7 +24,7 @@
   src = ./..;
 
   buildInputs = [
-    (python3.withPackages (ps: [ps.yt-dlp]))
+    (python3.withPackages (ps: [ps.yt-dlp blake3]))
     mpv-unwrapped.dev
     ffmpeg
   ];