tahoe-lafs/nix/txtorcon.nix

10 lines
225 B
Nix
Raw Normal View History

2023-05-24 12:54:56 +00:00
{ txtorcon, fetchPypi }:
txtorcon.overrideAttrs (old: rec {
pname = "txtorcon";
version = "23.5.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-k/2Aqd1QX2mNCGT+k9uLapwRRLX+uRUwggtw7YmCZRw=";
};
})