mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 21:43:09 +00:00
10 lines
218 B
Nix
10 lines
218 B
Nix
|
{ klein, fetchPypi }:
|
||
|
klein.overrideAttrs (old: rec {
|
||
|
pname = "klein";
|
||
|
version = "23.5.0";
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "sha256-kGkSt6tBDZp/NRICg5w81zoqwHe9AHHIYcMfDu92Aoc=";
|
||
|
};
|
||
|
})
|