2024-12-17 12:10:05 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
fetchPypi,
|
|
|
|
python3Packages,
|
|
|
|
}:
|
2024-11-21 09:24:15 +00:00
|
|
|
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";
|
|
|
|
};
|
|
|
|
}
|