animdl: move to pkgs/by-name

+4 -21
+4 -19
pkgs/applications/video/animdl/default.nix pkgs/by-name/an/animdl/package.nix
··· 1 { 2 lib, 3 - buildPythonApplication, 4 fetchFromGitHub, 5 - poetry-core, 6 - anchor-kr, 7 - anitopy, 8 - click, 9 - cssselect, 10 - httpx, 11 - lxml, 12 - packaging, 13 - pkginfo, 14 - pycryptodomex, 15 - pyyaml, 16 - regex, 17 - rich, 18 - tqdm, 19 - yarl, 20 }: 21 - buildPythonApplication { 22 pname = "animdl"; 23 version = "1.7.27"; 24 pyproject = true; ··· 47 "yarl" 48 ]; 49 50 - build-system = [ 51 poetry-core 52 ]; 53 54 - dependencies = [ 55 anchor-kr 56 anitopy 57 click
··· 1 { 2 lib, 3 fetchFromGitHub, 4 + python3Packages, 5 }: 6 + python3Packages.buildPythonApplication { 7 pname = "animdl"; 8 version = "1.7.27"; 9 pyproject = true; ··· 32 "yarl" 33 ]; 34 35 + build-system = with python3Packages; [ 36 poetry-core 37 ]; 38 39 + dependencies = with python3Packages; [ 40 anchor-kr 41 anitopy 42 click
-2
pkgs/top-level/all-packages.nix
··· 16931 16932 yaziPlugins = recurseIntoAttrs (callPackage ../by-name/ya/yazi/plugins { }); 16933 16934 - animdl = python3Packages.callPackage ../applications/video/animdl { }; 16935 - 16936 dillo = callPackage ../by-name/di/dillo/package.nix { 16937 fltk = fltk13; 16938 };
··· 16931 16932 yaziPlugins = recurseIntoAttrs (callPackage ../by-name/ya/yazi/plugins { }); 16933 16934 dillo = callPackage ../by-name/di/dillo/package.nix { 16935 fltk = fltk13; 16936 };