{ lib, stdenv, fetchgit, fetchNodeModules, buildPythonPackage , pgpy, flask, bleach, humanize, html5lib, markdown, psycopg2, pygments , requests, sqlalchemy, cryptography, beautifulsoup4, sqlalchemy-utils, prometheus_client , celery, alembic, importlib-metadata, mistletoe , sassc, nodejs , writeText }: buildPythonPackage rec { pname = "srht"; version = "0.65.2"; src = fetchgit { url = "https://git.sr.ht/~sircmpwn/core.sr.ht"; rev = version; sha256 = "1jfp1vc8mink3c7ccacgnqx8hpkck82ipxiql38q1y9l8xcsah03"; }; node_modules = fetchNodeModules { src = "${src}/srht"; nodejs = nodejs; sha256 = "0gwa2xb75g7fclrsr7r131kj8ri5gmhd96yw1iws5pmgsn2rlqi1"; }; patches = [ ./disable-npm-install.patch ]; nativeBuildInputs = [ sassc nodejs ]; propagatedBuildInputs = [ pgpy flask bleach humanize html5lib markdown psycopg2 pygments requests mistletoe sqlalchemy cryptography beautifulsoup4 sqlalchemy-utils prometheus_client # Unofficial runtime dependencies? celery alembic importlib-metadata ]; PKGVER = version; preBuild = '' cp -r ${node_modules} srht/node_modules ''; dontUseSetuptoolsCheck = true; meta = with lib; { homepage = "https://git.sr.ht/~sircmpwn/srht"; description = "Core modules for sr.ht"; license = licenses.bsd3; maintainers = with maintainers; [ eadwu ]; }; }