mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-03-22 11:45:15 +00:00
Add klein.
This commit is contained in:
parent
f549488bb5
commit
6c514dfda5
18
nix/klein.nix
Normal file
18
nix/klein.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
@ -28,6 +28,9 @@ 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 { };
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user