4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
71 lines
1.4 KiB
Nix
71 lines
1.4 KiB
Nix
{ 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 ];
|
|
};
|
|
}
|