mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
itchiodl: init at 2.1.2
This commit is contained in:
parent
7f6757e4f2
commit
99deccdcec
2 changed files with 37 additions and 0 deletions
35
pkgs/games/itchiodl/default.nix
Normal file
35
pkgs/games/itchiodl/default.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{ lib
|
||||
, python3Packages
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "itchiodl";
|
||||
version = "2.1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Emersont1";
|
||||
repo = "itchio";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-U9oLrocwVdTqTQ26/MMiYO++yFGdOjnn8g+ea1jCl/A=";
|
||||
};
|
||||
|
||||
format = "pyproject";
|
||||
|
||||
nativeBuildInputs = with python3Packages; [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
beautifulsoup4
|
||||
clint
|
||||
requests
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/Emersont1/itchio";
|
||||
description = "itch.io download tool";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fgaz ];
|
||||
};
|
||||
}
|
|
@ -3248,6 +3248,8 @@ with pkgs;
|
|||
|
||||
itch = callPackage ../games/itch {};
|
||||
|
||||
itchiodl = callPackage ../games/itchiodl { };
|
||||
|
||||
itd = callPackage ../applications/misc/itd { };
|
||||
|
||||
lastpass-cli = callPackage ../tools/security/lastpass-cli { };
|
||||
|
|
Loading…
Reference in a new issue