mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 21:17:54 +00:00
Use nixpkgs-provided txtorcon
This commit is contained in:
parent
e01453e0fd
commit
37373133b9
@ -45,15 +45,10 @@ in {
|
||||
# Some dependencies aren't packaged in nixpkgs so supply our own packages.
|
||||
txi2p = self.callPackage ./txi2p.nix { };
|
||||
|
||||
# Some packages are of somewhat too-old versions - update them.
|
||||
txtorcon = self.callPackage ./txtorcon.nix {
|
||||
# Avoid infinite recursion.
|
||||
inherit (super) txtorcon;
|
||||
};
|
||||
|
||||
# collections-extended is currently broken for Python 3.11 in nixpkgs but
|
||||
# we know where a working version lives.
|
||||
collections-extended = self.callPackage ./collections-extended.nix {
|
||||
# Avoid infinite recursion.
|
||||
inherit (super) collections-extended;
|
||||
};
|
||||
|
||||
|
@ -1,9 +0,0 @@
|
||||
{ txtorcon, fetchPypi }:
|
||||
txtorcon.overrideAttrs (old: rec {
|
||||
pname = "txtorcon";
|
||||
version = "23.5.0";
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-k/2Aqd1QX2mNCGT+k9uLapwRRLX+uRUwggtw7YmCZRw=";
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user