mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-18 18:56:28 +00:00
19 lines
404 B
Nix
19 lines
404 B
Nix
{ lib, buildPythonPackage, fetchPypi }:
|
|
buildPythonPackage rec {
|
|
pname = "klein";
|
|
version = "21.8.0";
|
|
|
|
src = fetchPypi {
|
|
sha256 = "09i1x5ppan3kqsgclbz8xdnlvzvp3amijbmdzv0kik8p5l5zswxa";
|
|
inherit pname version;
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = https://github.com/twisted/klein;
|
|
description = "Nicer web server for Twisted";
|
|
license = licenses.mit;
|
|
};
|
|
}
|