10 buildPythonPackage rec {
11 pname = "epicstore-api";
15 src = fetchFromGitHub {
17 repo = "epicstore_api";
18 rev = "refs/tags/v_${version}";
19 hash = "sha256-9Gh9bsNgZx/SinKr7t1dvqrOUP+z4Gs8BFMLYtboFmg=";
22 build-system = [ setuptools ];
24 dependencies = [ requests ];
26 pythonImportsCheck = [ "epicstore_api" ];
28 nativeCheckInputs = [ pytestCheckHook ];
30 # tests directory exists but contains no test cases
34 changelog = "https://github.com/SD4RK/epicstore_api/releases/tag/v_${version}";
35 description = "Epic Games Store Web API Wrapper written in Python";
36 homepage = "https://github.com/SD4RK/epicstore_api";
37 license = lib.licenses.mit;
38 maintainers = with lib.maintainers; [ dotlambda ];