mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
animdl: unpin cssselect (#413426)
This commit is contained in:
commit
396c35b7c9
2 changed files with 8 additions and 22 deletions
|
@ -1,27 +1,12 @@
|
||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
buildPythonApplication,
|
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
poetry-core,
|
python3Packages,
|
||||||
anchor-kr,
|
|
||||||
anitopy,
|
|
||||||
click,
|
|
||||||
cssselect,
|
|
||||||
httpx,
|
|
||||||
lxml,
|
|
||||||
packaging,
|
|
||||||
pkginfo,
|
|
||||||
pycryptodomex,
|
|
||||||
pyyaml,
|
|
||||||
regex,
|
|
||||||
rich,
|
|
||||||
tqdm,
|
|
||||||
yarl,
|
|
||||||
}:
|
}:
|
||||||
buildPythonApplication {
|
python3Packages.buildPythonApplication {
|
||||||
pname = "animdl";
|
pname = "animdl";
|
||||||
version = "1.7.27";
|
version = "1.7.27";
|
||||||
format = "pyproject";
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "justfoolingaround";
|
owner = "justfoolingaround";
|
||||||
|
@ -34,7 +19,9 @@ buildPythonApplication {
|
||||||
pythonRemoveDeps = [
|
pythonRemoveDeps = [
|
||||||
"comtypes" # windows only
|
"comtypes" # windows only
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonRelaxDeps = [
|
pythonRelaxDeps = [
|
||||||
|
"cssselect"
|
||||||
"httpx"
|
"httpx"
|
||||||
"lxml"
|
"lxml"
|
||||||
"packaging"
|
"packaging"
|
||||||
|
@ -45,10 +32,11 @@ buildPythonApplication {
|
||||||
"yarl"
|
"yarl"
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
build-system = with python3Packages; [
|
||||||
poetry-core
|
poetry-core
|
||||||
];
|
];
|
||||||
propagatedBuildInputs = [
|
|
||||||
|
dependencies = with python3Packages; [
|
||||||
anchor-kr
|
anchor-kr
|
||||||
anitopy
|
anitopy
|
||||||
click
|
click
|
|
@ -16931,8 +16931,6 @@ with pkgs;
|
||||||
|
|
||||||
yaziPlugins = recurseIntoAttrs (callPackage ../by-name/ya/yazi/plugins { });
|
yaziPlugins = recurseIntoAttrs (callPackage ../by-name/ya/yazi/plugins { });
|
||||||
|
|
||||||
animdl = python3Packages.callPackage ../applications/video/animdl { };
|
|
||||||
|
|
||||||
dillo = callPackage ../by-name/di/dillo/package.nix {
|
dillo = callPackage ../by-name/di/dillo/package.nix {
|
||||||
fltk = fltk13;
|
fltk = fltk13;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue