nixpkgs/pkgs/applications/version-management/sourcehut/core.nix

71 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchgit, fetchNodeModules, buildPythonPackage
, pgpy, flask, bleach, misaka, humanize, html5lib, markdown, psycopg2, pygments
, requests, sqlalchemy, cryptography, beautifulsoup4, sqlalchemy-utils, prometheus_client
, celery, alembic, importlib-metadata
, sassc, nodejs
, writeText }:
buildPythonPackage rec {
pname = "srht";
2020-06-23 01:50:01 +02:00
version = "0.64.0";
src = fetchgit {
url = "https://git.sr.ht/~sircmpwn/core.sr.ht";
rev = version;
2020-06-23 01:50:01 +02:00
sha256 = "ubCbDh60zg88LXupWAo2EnqhE5jt0F0L9ikTBebusYQ=";
};
node_modules = fetchNodeModules {
src = "${src}/srht";
nodejs = nodejs;
2019-12-30 16:19:56 +01:00
sha256 = "0gwa2xb75g7fclrsr7r131kj8ri5gmhd96yw1iws5pmgsn2rlqi1";
};
patches = [
./disable-npm-install.patch
];
nativeBuildInputs = [
sassc
nodejs
];
propagatedBuildInputs = [
pgpy
flask
bleach
misaka
humanize
html5lib
markdown
psycopg2
pygments
requests
sqlalchemy
2019-12-30 02:03:28 +01:00
cryptography
beautifulsoup4
sqlalchemy-utils
prometheus_client
# Unofficial runtime dependencies?
celery
alembic
2019-11-04 03:19:05 +01:00
importlib-metadata
];
PKGVER = version;
preBuild = ''
cp -r ${node_modules} srht/node_modules
'';
2019-12-30 02:03:28 +01:00
dontUseSetuptoolsCheck = true;
meta = with stdenv.lib; {
homepage = "https://git.sr.ht/~sircmpwn/srht";
description = "Core modules for sr.ht";
license = licenses.bsd3;
maintainers = with maintainers; [ eadwu ];
};
}