bump the nix package of txtorcon

This commit is contained in:
Jean-Paul Calderone 2023-05-24 08:54:56 -04:00
parent f4a099c801
commit 0e28c8ed4a
2 changed files with 13 additions and 1 deletions

View File

@ -21,11 +21,14 @@ in {
pycddl = self.callPackage ./pycddl.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 {
# Avoid infinite recursion.
inherit (super) klein;
};
txtorcon = self.callPackage ./txtorcon.nix {
inherit (super) txtorcon;
};
# collections-extended is currently broken for Python 3.11 in nixpkgs but
# we know where a working version lives.

9
nix/txtorcon.nix Normal file
View 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=";
};
})