mov-cli: 1.5.4 -> 4.4.5
Co-author: Daniel Schaefer <git@danielschafer.me>
This commit is contained in:
parent
f0a074c874
commit
0a1bb73119
39
pkgs/by-name/mo/mov-cli/mov-cli-test.nix
Normal file
39
pkgs/by-name/mo/mov-cli/mov-cli-test.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools-scm,
|
||||
pytubefix,
|
||||
requests,
|
||||
devgoldyutils,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mov-cli-test";
|
||||
version = "1.1.7";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mov-cli";
|
||||
repo = "mov-cli-test";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-INdPAJxPxfo5bKg4Xn1r7bildxznXrTJxmDI21wylnI=";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pytubefix
|
||||
requests
|
||||
devgoldyutils
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ setuptools-scm ];
|
||||
|
||||
meta = {
|
||||
description = "A mov-cli plugin that let's you test mov-cli's capabilities by watching free films and animations in the creative commons";
|
||||
homepage = "https://github.com/mov-cli/mov-cli-test";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ roshaen ];
|
||||
};
|
||||
}
|
@ -8,7 +8,7 @@
|
||||
|
||||
let
|
||||
pname = "mov-cli";
|
||||
version = "1.5.7";
|
||||
version = "4.4.5";
|
||||
in
|
||||
python3.pkgs.buildPythonPackage {
|
||||
inherit pname version;
|
||||
@ -18,21 +18,33 @@ python3.pkgs.buildPythonPackage {
|
||||
owner = "mov-cli";
|
||||
repo = "mov-cli";
|
||||
rev = version;
|
||||
hash = "sha256-OJhZtrSB5rjPY80GkTSU82hkcBgFYpW7Rc24BlBH7CE=";
|
||||
hash = "sha256-Q5fzxdMEUDL1VgeTTgU76z0nksocgjyonAroP/m/Q+0=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
beautifulsoup4
|
||||
click
|
||||
colorama
|
||||
deprecation
|
||||
httpx
|
||||
inquirer
|
||||
krfzf-py
|
||||
lxml
|
||||
poetry-core
|
||||
pycrypto
|
||||
python-decouple
|
||||
setuptools
|
||||
six
|
||||
thefuzz
|
||||
tldextract
|
||||
toml
|
||||
typer
|
||||
unidecode
|
||||
(callPackage ./mov-cli-test.nix {})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
python3.pkgs.pythonRelaxDepsHook
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [
|
||||
|
Loading…
Reference in New Issue
Block a user