-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sourcehut: init #54425
sourcehut: init #54425
Conversation
b2ec141
to
63bdd18
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some requested changes apply to packages that were not yet reviewed as well.
63bdd18
to
739eb98
Compare
Please squash the changes into the appropriate commits. |
bfa4f2c
to
3633fb7
Compare
06294cf
to
e3dc968
Compare
pkgs/top-level/all-packages.nix
Outdated
srhtPackages = callPackage ../applications/version-management/sr-ht { | ||
# https://github.com/NixOS/nixpkgs/pull/54425#discussion_r249489825 | ||
pythonPackages = python36Packages; | ||
fetchNodeModules = callPackage ../applications/networking/instant-messengers/rambox/fetchNodeModules.nix { }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can also be put in a let statement inside the expression. However, I'm not sure if fetchNodeModules
should be used, I'm not familiar with the Node ecosystem.
4e27b55
to
c1acc18
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please look into how to run pgpy's tests. It's currently giving Ran 0 tests in 0.000s
.
this is awesome |
c1acc18
to
40c9186
Compare
]; | ||
|
||
# Exclude test in root directory from 5 years ago, test_load_asc_bench.py | ||
# Has progressbar dependency that doesn't look like even supports Python 3.x |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are multiple progressbar successors in our python-packages.nix
, some of which support Python 2 and 3.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like it is just an outdated test, polyfilled progressbar
with progressbar33
and I get an error of ImportError: cannot import name 'Exportable' from 'pgpy.types' (/build/source/pgpy/types.py)
and checking pgpy/types.py
there doesn't seem to any object called Exportable
there.
Though progressbar2
seems to be blocked by a single test with no blunt error I can make out, https://hydra.nixos.org/build/87231550/nixlog/1.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That error should be reported upstream if it has not been fixed yet.
To fix the progressbar2 build, I have pushed 6672304 to master.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
40c9186
to
52484db
Compare
The status update that shows a [somewhat] viable In terms of other stuff, the mailing/mail server will probably be the last thing that'll work since I hardly have any experience setting that up. I'll probably just setup the web interfaces for [1] https://gist.github.com/eadwu/e633df2660b316f3d09974594cb519e5 |
30f8b53
to
5d77d97
Compare
Edmund, for the mailserver, it might help to look at
https://gitlab.com/simple-nixos-mailserver/nixos-mailserver for reference...
Then again, setting up a mailserver could be outside the scope of this,
since it is a dependency of sourcehut and not part of the software suite itself.
|
I agree. I also suggest the nixos-mailserver, which I have good experience with (used it only for journalwatch so far). |
Seems to me all review items have been addressed. Unless there is something fundamentally wrong with this, it'd be nice to finally integrate it. |
builds-sr-ht: init at 0.45.13 dispatch-sr-ht: init at 0.11.0 git-sr-ht: init at 0.32.3 hg-sr-ht: init at 0.13.0 lists-sr-ht: init at 0.36.3 man-sr-ht: init at 0.12.4 meta-sr-ht: init at 0.34.3 paste-sr-ht: init at 0.5.1 todo-sr-ht: init at 0.46.8
5d77d97
to
a2ca6ef
Compare
Rebased onto latest master and built successfully. |
Thank you |
Bravo! @eadwu thanks for sticking with it. |
Yippie! |
#65109 is an incomplete implementation of an actual sourcehut network (internals, not webserver/mailserver). This PR just included the packages needed for it to function. |
Is it possible to run sourcehut with these packages and systemd services until the module in #65109 is merged? systemd.services.sourcehut-meta = {
description = "meta.sr.ht website service";
requires = ["postgresql.service"];
after = [ "postgresql.service network.target" ];
environment = let
penv = pkgs.python.buildEnv.override {
extraLibs = [ pkgs.sourcehut.metasrht ] ;
};
in
{
PYTHONPATH = "${penv}/${pkgs.python.sitePackages}";
};
serviceConfig = {
Type = "simple";
User = "sourcehut";
Restart = "always";
ExecStart = ''${pkgs.python38Packages.gunicorn}/bin/gunicorn app.py --chdir ${pkgs.sourcehut.metasrht}/lib/python3.8/site-packages/metasrht -b 127.0.0.1:5000'';
};
};
|
|
Can you link me any kind of information or docs on how to actually run it? |
I believe a nixops implementation was referred on IRC? And there is the nixops implementation I used locally within nixos-configuration, although it's now moved from There's no difference between the nixops configuration and normal NixOS configuration (just combine it all), nixops is just a easier way to distribute sourcehut across multiple machines (VMs). Wrong thread to post on though since you're pinging the 20 or so other people by commenting. |
Motivation for this change
Totally didn't steal
pgpy
andsqlalchemy-utils
from #50328.Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)nix path-info -S
before and after)