biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / games / itchiodl / default.nix
blob57a5d1473e178c11160dcb4e086a4fec9a22c42c
1 { lib
2 , python3Packages
3 , fetchFromGitHub
4 }:
6 python3Packages.buildPythonApplication rec {
7   pname = "itchiodl";
8   version = "2.3.0";
10   src = fetchFromGitHub {
11     owner = "Emersont1";
12     repo = "itchio";
13     rev = "v${version}";
14     hash = "sha256-XuNkqTAT9LlSwruchGQbombAKHZvKhpnqLfvJdDcrj0=";
15   };
17   format = "pyproject";
19   nativeBuildInputs = with python3Packages; [
20     poetry-core
21   ];
23   propagatedBuildInputs = with python3Packages; [
24     beautifulsoup4
25     clint
26     requests
27   ];
29   meta = with lib; {
30     homepage = "https://github.com/Emersont1/itchio";
31     description = "itch.io download tool";
32     license = licenses.mit;
33     maintainers = with maintainers; [ fgaz ];
34   };