mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 13:33:54 +00:00
24 lines
561 B
Nix
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";
|
|
};
|
|
}
|