about summary refs log tree commit diff
path: root/pkgs/development/python-modules/m3u8
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-03-03 01:48:06 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-03-03 23:59:29 +0100
commit0215034f25d23eb6da0f8006a941ccbfd4d9c355 (patch)
tree98d0592409a5d2ade37c8af19fe2f37f6b042bc1 /pkgs/development/python-modules/m3u8
parent8afd8d323fe5ed6cfcf38d1cf86e53dad7045d97 (diff)
python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
Diffstat (limited to 'pkgs/development/python-modules/m3u8')
-rw-r--r--pkgs/development/python-modules/m3u8/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/m3u8/default.nix b/pkgs/development/python-modules/m3u8/default.nix
index cc5dfc7ba2549..6bb735e6de72c 100644
--- a/pkgs/development/python-modules/m3u8/default.nix
+++ b/pkgs/development/python-modules/m3u8/default.nix
@@ -8,14 +8,14 @@ buildPythonPackage rec {
     owner = "globocom";
     repo = pname;
     rev = version;
-    sha256 = "sha256-EfHhmV2otEgEy2OVohS+DF7dk97GFdWZ4cFCERZBmlA=";
+    hash = "sha256-EfHhmV2otEgEy2OVohS+DF7dk97GFdWZ4cFCERZBmlA=";
   };
 
   patches = [
     # Fix hardcoded /tmp dir (fix build on Hydra)
     (fetchpatch {
       url = "https://github.com/globocom/m3u8/commit/cf7ae5fda4681efcea796cd7c51c02f152c36009.patch";
-      sha256 = "sha256-SEETpIJQddid8D//6DVrSGs/BqDeMOzufE0bBrm+/xY=";
+      hash = "sha256-SEETpIJQddid8D//6DVrSGs/BqDeMOzufE0bBrm+/xY=";
     })
   ];