Skip to content

Commit

Permalink
Add meta
Browse files Browse the repository at this point in the history
  • Loading branch information
nikdoof committed Apr 1, 2024
1 parent f9ba3da commit ef8e5c9
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
pkgs ? import <nixpkgs> { system = builtins.currentSystem; },
poetry2nix ? import (fetchTarball {
url = "https://github.com/nix-community/poetry2nix/archive/refs/tags/2024.2.2230616.tar.gz";
sha256 = "0qx2iv57vhgraaqj4dm9zd3dha1p6ch4n07pja0hsxsymjbvdanw";
Expand All @@ -7,4 +8,16 @@

poetry2nix.mkPoetryApplication {
projectDir = ./.;
}
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;

pythonImportsCheck = [ "tildejsongen" ];

meta = with pkgs.lib; {
description = "A simple Python script to generate a `tilde.json` file for Tilde-style servers";
homepage = "https://github.com/dimension-sh/tildejsongen";
maintainers = with maintainers; [ nikdoof ];
license = licenses.mit;
platforms = platforms.all;
};
}

0 comments on commit ef8e5c9

Please sign in to comment.