mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-27 06:20:25 +00:00
bump the nix package of txtorcon
This commit is contained in:
parent
f4a099c801
commit
0e28c8ed4a
@ -21,11 +21,14 @@ in {
|
|||||||
pycddl = self.callPackage ./pycddl.nix { };
|
pycddl = self.callPackage ./pycddl.nix { };
|
||||||
txi2p = self.callPackage ./txi2p.nix { };
|
txi2p = self.callPackage ./txi2p.nix { };
|
||||||
|
|
||||||
# Update the version of klein.
|
# Some packages are of somewhat too-old versions - update them.
|
||||||
klein = self.callPackage ./klein.nix {
|
klein = self.callPackage ./klein.nix {
|
||||||
# Avoid infinite recursion.
|
# Avoid infinite recursion.
|
||||||
inherit (super) klein;
|
inherit (super) klein;
|
||||||
};
|
};
|
||||||
|
txtorcon = self.callPackage ./txtorcon.nix {
|
||||||
|
inherit (super) txtorcon;
|
||||||
|
};
|
||||||
|
|
||||||
# collections-extended is currently broken for Python 3.11 in nixpkgs but
|
# collections-extended is currently broken for Python 3.11 in nixpkgs but
|
||||||
# we know where a working version lives.
|
# we know where a working version lives.
|
||||||
|
9
nix/txtorcon.nix
Normal file
9
nix/txtorcon.nix
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{ txtorcon, fetchPypi }:
|
||||||
|
txtorcon.overrideAttrs (old: rec {
|
||||||
|
pname = "txtorcon";
|
||||||
|
version = "23.5.0";
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
hash = "sha256-k/2Aqd1QX2mNCGT+k9uLapwRRLX+uRUwggtw7YmCZRw=";
|
||||||
|
};
|
||||||
|
})
|
Loading…
x
Reference in New Issue
Block a user