mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +03:00
commit
b69f44d251
2 changed files with 50 additions and 0 deletions
48
pkgs/games/instawow/default.nix
Normal file
48
pkgs/games/instawow/default.nix
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{ lib, python3, fetchFromGitHub, plugins ? [ ] }:
|
||||||
|
|
||||||
|
python3.pkgs.buildPythonApplication rec {
|
||||||
|
pname = "instawow";
|
||||||
|
version = "v3.1.0";
|
||||||
|
pyproject = true;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "layday";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "sha256-xJw/tgHBfOlv5JYsWWdEJ8vpel348YtXCQsaLqgp3Z0=";
|
||||||
|
};
|
||||||
|
|
||||||
|
extras = [ ]; # Disable GUI, most dependencies are not packaged.
|
||||||
|
|
||||||
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
|
poetry-core
|
||||||
|
poetry-dynamic-versioning
|
||||||
|
];
|
||||||
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
aiohttp
|
||||||
|
aiohttp-client-cache
|
||||||
|
alembic
|
||||||
|
attrs
|
||||||
|
cattrs
|
||||||
|
click
|
||||||
|
iso8601
|
||||||
|
loguru
|
||||||
|
mako
|
||||||
|
packaging
|
||||||
|
pluggy
|
||||||
|
prompt-toolkit
|
||||||
|
questionary
|
||||||
|
rapidfuzz
|
||||||
|
sqlalchemy
|
||||||
|
truststore
|
||||||
|
typing-extensions
|
||||||
|
yarl
|
||||||
|
] ++ plugins;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/layday/instawow";
|
||||||
|
description = "World of Warcraft add-on manager CLI and GUI";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ seirl ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -16395,6 +16395,8 @@ with pkgs;
|
||||||
indradb-server
|
indradb-server
|
||||||
indradb-client;
|
indradb-client;
|
||||||
|
|
||||||
|
instawow = callPackage ../games/instawow/default.nix { };
|
||||||
|
|
||||||
intel-graphics-compiler = callPackage ../development/compilers/intel-graphics-compiler { };
|
intel-graphics-compiler = callPackage ../development/compilers/intel-graphics-compiler { };
|
||||||
|
|
||||||
intercal = callPackage ../development/compilers/intercal { };
|
intercal = callPackage ../development/compilers/intercal { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue