nixpkgs/pkgs/games/itchiodl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
694 B
Nix
Raw Normal View History

2023-01-25 16:40:44 +01:00
{ lib
, python3Packages
, fetchFromGitHub
}:
python3Packages.buildPythonApplication rec {
pname = "itchiodl";
2023-03-17 15:19:33 +01:00
version = "2.3.0";
2023-01-25 16:40:44 +01:00
src = fetchFromGitHub {
owner = "Emersont1";
repo = "itchio";
rev = "v${version}";
2023-03-17 15:19:33 +01:00
hash = "sha256-XuNkqTAT9LlSwruchGQbombAKHZvKhpnqLfvJdDcrj0=";
2023-01-25 16:40:44 +01:00
};
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 ];
};
}