mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 21:43:09 +00:00
10 lines
225 B
Nix
10 lines
225 B
Nix
{ txtorcon, fetchPypi }:
|
|
txtorcon.overrideAttrs (old: rec {
|
|
pname = "txtorcon";
|
|
version = "23.5.0";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-k/2Aqd1QX2mNCGT+k9uLapwRRLX+uRUwggtw7YmCZRw=";
|
|
};
|
|
})
|