about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/yark/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/yark/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/yark/default.nix24
1 files changed, 13 insertions, 11 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/yark/default.nix b/nixpkgs/pkgs/development/python-modules/yark/default.nix
index f7b9f696d6cf..83e1b909793e 100644
--- a/nixpkgs/pkgs/development/python-modules/yark/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/yark/default.nix
@@ -1,25 +1,27 @@
 { lib
 , buildPythonPackage
-, fetchPypi
-, poetry-core
-, pythonRelaxDepsHook
 , click
 , colorama
+, fetchPypi
 , flask
+, poetry-core
+, progress
+, pythonOlder
+, pythonRelaxDepsHook
 , requests
 , yt-dlp
-, progress
 }:
 
 buildPythonPackage rec {
   pname = "yark";
-  version = "1.2.9";
+  version = "1.2.10";
+  pyproject = true;
 
-  format = "pyproject";
+  disabled = pythonOlder "3.9";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-g9JwFnB4tFuvRvQGEURbIB2gaXQgCQJkL1sNmYMFvck=";
+    hash = "sha256-Y1fWHpvrqGuBPyJ2dO2y0W2zhEgcTJABtkOAoZ7uyZU=";
   };
 
   pythonRelaxDeps = [
@@ -40,8 +42,7 @@ buildPythonPackage rec {
     yt-dlp
   ];
 
-  # There aren't any unit tests. If test discovery runs, it will crash, halting the build.
-  # When upstream adds unit tests, please configure them here. Thanks! ~ C.
+  # Module has no tests
   doCheck = false;
 
   pythonImportsCheck = [
@@ -49,9 +50,10 @@ buildPythonPackage rec {
   ];
 
   meta = with lib; {
-    description = "YouTube archiving made simple";
+    description = "Module for YouTube archiving";
     homepage = "https://github.com/Owez/yark";
+    changelog = "https://github.com/Owez/yark/releases/tag/v${version}";
     license = licenses.mit;
-    maintainers = [ ];
+    maintainers = with maintainers; [ ];
   };
 }