My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/skytemple-eventserver/default.nix

23 lines
630 B

{ 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 ];
};
}