2023-08-01 01:07:46 +02:00
|
|
|
{ lib
|
|
|
|
, writeScript
|
|
|
|
, buildPythonApplication
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pythonOlder
|
|
|
|
, setuptools
|
|
|
|
, requests
|
|
|
|
, protobuf
|
|
|
|
, pycryptodome
|
|
|
|
, zstandard
|
|
|
|
, json5
|
|
|
|
, platformdirs
|
|
|
|
, cacert
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "nile";
|
2023-11-04 21:14:37 +01:00
|
|
|
version = "unstable-2023-10-03";
|
2023-08-01 01:07:46 +02:00
|
|
|
format = "pyproject";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "imLinguin";
|
|
|
|
repo = "nile";
|
2023-11-04 21:14:37 +01:00
|
|
|
rev = "8f7ab2650fc730efc8960b5fcd71421d724a4108";
|
|
|
|
hash = "sha256-Vhjp9JX8VX0PWsvEh5eOhz7vsIEaiCyPNPOjibE8GXo=";
|
2023-08-01 01:07:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
setuptools
|
|
|
|
requests
|
|
|
|
protobuf
|
|
|
|
pycryptodome
|
|
|
|
zstandard
|
|
|
|
json5
|
|
|
|
platformdirs
|
|
|
|
];
|
|
|
|
|
|
|
|
pyprojectAppendix = ''
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
include = ["nile*"]
|
|
|
|
'';
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
echo "$pyprojectAppendix" >> pyproject.toml
|
|
|
|
'';
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "nile" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Unofficial Amazon Games client";
|
|
|
|
homepage = "https://github.com/imLinguin/nile";
|
|
|
|
license = with licenses; [ gpl3 ];
|
|
|
|
maintainers = with maintainers; [ aidalgol ];
|
|
|
|
};
|
|
|
|
|
|
|
|
# Upstream does not create git tags when bumping the version, so we have to
|
|
|
|
# extract it from the source code on the main branch.
|
|
|
|
passthru.updateScript = writeScript "gogdl-update-script" ''
|
|
|
|
#!/usr/bin/env nix-shell
|
|
|
|
#!nix-shell -i bash -p curl gnused jq common-updater-scripts
|
|
|
|
set -eou pipefail;
|
|
|
|
|
|
|
|
owner=imLinguin
|
|
|
|
repo=nile
|
|
|
|
path='nile/__init__.py'
|
|
|
|
|
|
|
|
version=$(
|
|
|
|
curl --cacert "${cacert}/etc/ssl/certs/ca-bundle.crt" \
|
|
|
|
https://raw.githubusercontent.com/$owner/$repo/main/$path |
|
|
|
|
sed -n 's/^\s*version\s*=\s*"\([0-9]\.[0-9]\.[0-9]\)"\s*$/\1/p')
|
|
|
|
|
|
|
|
commit=$(curl --cacert "${cacert}/etc/ssl/certs/ca-bundle.crt" \
|
|
|
|
https://api.github.com/repos/$owner/$repo/commits?path=$path |
|
|
|
|
jq -r '.[0].sha')
|
|
|
|
|
|
|
|
update-source-version \
|
|
|
|
${pname} \
|
|
|
|
"$version" \
|
|
|
|
--file=./pkgs/games/nile/default.nix \
|
|
|
|
--rev=$commit
|
|
|
|
'';
|
|
|
|
}
|