mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
audible-cli: 0.2.6 -> 0.3.1
Also adds an update script for the future
This commit is contained in:
parent
66e2e75c67
commit
2c6585657c
@ -1,15 +1,15 @@
|
||||
{ lib, python3Packages, fetchFromGitHub, installShellFiles }:
|
||||
{ lib, python3Packages, fetchFromGitHub, installShellFiles, nix-update-script }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "audible-cli";
|
||||
version = "0.2.6";
|
||||
version = "0.3.1";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mkb79";
|
||||
repo = "audible-cli";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-J81RcehFokOpsQBJLvmeihSrlMyX0geHPl3PPxvGjmY=";
|
||||
hash = "sha256-AYL7lcYYY7gK12Id94aHRWRlCiznnF4r+lpI5VFpAWY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with python3Packages; [
|
||||
@ -35,7 +35,6 @@ python3Packages.buildPythonApplication rec {
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"httpx"
|
||||
"audible"
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
@ -53,6 +52,8 @@ python3Packages.buildPythonApplication rec {
|
||||
"audible_cli"
|
||||
];
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = with lib; {
|
||||
description = "A command line interface for audible package. With the cli you can download your Audible books, cover, chapter files";
|
||||
license = licenses.agpl3Only;
|
@ -1711,8 +1711,6 @@ with pkgs;
|
||||
|
||||
arubaotp-seed-extractor = callPackage ../tools/security/arubaotp-seed-extractor { };
|
||||
|
||||
audible-cli = callPackage ../tools/misc/audible-cli { };
|
||||
|
||||
auditwheel = with python3Packages; toPythonApplication auditwheel;
|
||||
|
||||
amidst = callPackage ../tools/games/minecraft/amidst { };
|
||||
|
Loading…
Reference in New Issue
Block a user