Merge pull request #298121 from linsui/yutto
yutto: 2.0.0b35 -> 2.0.0b36-unstable-2024-03-04
This commit is contained in:
commit
a078c0abe1
2 changed files with 12 additions and 14 deletions
|
@ -1,29 +1,29 @@
|
||||||
{ lib
|
{ lib
|
||||||
, python3
|
, python3Packages
|
||||||
, fetchPypi
|
, fetchFromGitHub
|
||||||
, ffmpeg
|
, ffmpeg
|
||||||
, nix-update-script
|
, nix-update-script
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with python3.pkgs;
|
python3Packages.buildPythonApplication {
|
||||||
|
|
||||||
buildPythonApplication rec {
|
|
||||||
pname = "yutto";
|
pname = "yutto";
|
||||||
version = "2.0.0b35";
|
version = "2.0.0b36-unstable-2024-03-04";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
disabled = pythonOlder "3.9";
|
disabled = python3Packages.pythonOlder "3.9";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchFromGitHub {
|
||||||
inherit pname version;
|
owner = "yutto-dev";
|
||||||
hash = "sha256-r4Lc5PMkhwLMC6nKArvpf9M4N+eoV6OmZK2uhY6xZxA=";
|
repo = "yutto";
|
||||||
|
rev = "f2d34f9e2a2d45ed8ed6ae4c2bf91af248da27f0";
|
||||||
|
hash = "sha256-/zTQt+/sCjnQPt8YyKvRXpWVpN/yi2LrhpFH4FPbeOc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = with python3Packages; [
|
||||||
poetry-core
|
poetry-core
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = with python3Packages; [
|
||||||
httpx
|
httpx
|
||||||
aiofiles
|
aiofiles
|
||||||
biliass
|
biliass
|
|
@ -36229,8 +36229,6 @@ with pkgs;
|
||||||
|
|
||||||
ytmdl = callPackage ../tools/misc/ytmdl { };
|
ytmdl = callPackage ../tools/misc/ytmdl { };
|
||||||
|
|
||||||
yutto = callPackage ../tools/misc/yutto { };
|
|
||||||
|
|
||||||
yuview = libsForQt5.yuview;
|
yuview = libsForQt5.yuview;
|
||||||
|
|
||||||
wallust = callPackage ../applications/misc/wallust { };
|
wallust = callPackage ../applications/misc/wallust { };
|
||||||
|
|
Loading…
Reference in a new issue