nixpkgs/pkgs/development/python-modules/skytemple-eventserver/default.nix
2021-05-30 22:09:08 +02:00

24 lines
630 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub }:
buildPythonPackage rec {
pname = "skytemple-eventserver";
version = "1.0.0";
src = fetchFromGitHub {
owner = "SkyTemple";
repo = pname;
rev = version;
sha256 = "1xcf7ljvi5ixhwx9rkg3hnwcyv4wsgd2yb6is11jffbrdp00j2bq";
};
doCheck = false; # there are no tests
pythonImportsCheck = [ "skytemple_eventserver" ];
meta = with lib; {
homepage = "https://github.com/SkyTemple/skytemple-eventserver";
description = "Websocket server that emits SkyTemple UI events";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ xfix ];
};
}