From 9daf01f30d7e23ed9bd3d9077c306d8b0e55efeb Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 24 Feb 2023 04:20:00 +0000 Subject: [PATCH] you-get: 0.4.1620 -> 0.4.1650 https://github.com/soimort/you-get/releases/tag/v0.4.1650 --- pkgs/tools/misc/you-get/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/you-get/default.nix b/pkgs/tools/misc/you-get/default.nix index bc4e6b7a4675..dd2377c2b6fa 100644 --- a/pkgs/tools/misc/you-get/default.nix +++ b/pkgs/tools/misc/you-get/default.nix @@ -7,7 +7,8 @@ python3.pkgs.buildPythonApplication rec { pname = "you-get"; - version = "0.4.1620"; + version = "0.4.1650"; + format = "setuptools"; # Tests aren't packaged, but they all hit the real network so # probably aren't suitable for a build environment anyway. @@ -15,7 +16,7 @@ python3.pkgs.buildPythonApplication rec { src = python3.pkgs.fetchPypi { inherit pname version; - sha256 = "sha256-wCDaT9Nz1ZiSsqFwX1PXHq6QF6fjLRI9wwvvWxcmYOY="; + sha256 = "sha256-s8lEz3pjzEaMzMiBbc5/wAjC5rW6Uq7+XOIIGBijrUc="; }; patches = [ @@ -36,6 +37,10 @@ python3.pkgs.buildPythonApplication rec { --bash contrib/completion/you-get-completion.bash ''; + pythonImportsCheck = [ + "you_get" + ]; + meta = with lib; { description = "A tiny command line utility to download media contents from the web"; homepage = "https://you-get.org";