1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-09 19:23:52 +00:00
ultima/modules/home/programs/cli/anicli/chompjs.nix
2024-11-21 18:24:15 +09:00

24 lines
561 B
Nix

{ lib, pkgs, fetchPypi, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "chompjs";
version = "1.3.0";
pyproject = true;
src = fetchPypi {
pname = "chompjs";
inherit version;
hash = "sha256-isCzF1XpOTSPsq8cwBw1fbUMhU+j1QbOeSGPwV8FaGg=";
};
build-system = with python3Packages; [ setuptools ];
dependencies = with python3Packages; [ setuptools ];
meta = with lib; {
homepage = "https://github.com/Nykakin/chompjs";
maintainers = with maintainers; [ DADA30000 ];
mainProgram = "chompjs";
};
}