Rip out klein, maybe not necessary.

This commit is contained in:
Itamar Turner-Trauring 2021-11-30 13:47:28 -05:00
parent 1fc77504ae
commit c65a13e632
2 changed files with 0 additions and 23 deletions

View File

@ -1,20 +0,0 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "klein";
version = "21.8.0";
src = fetchPypi {
sha256 = "1mpydmz90d0n9dwa7mr6pgj5v0kczfs05ykssrasdq368dssw7ch";
inherit pname version;
};
doCheck = false;
propagatedBuildInputs = [ attrs hyperlink incremental Tubes Twisted typing_extensions Werkzeug zope.interface ];
meta = with lib; {
homepage = https://github.com/twisted/klein;
description = "Nicer web server for Twisted";
license = licenses.mit;
};
}

View File

@ -31,9 +31,6 @@ self: super: {
packageOverrides = python-self: python-super: {
# collections-extended is not part of nixpkgs at this time.
collections-extended = python-super.pythonPackages.callPackage ./collections-extended.nix { };
# klein is not in nixpkgs 21.05, at least:
klein = python-super.pythonPackages.callPackage ./klein.nix { };
};
};
}