python310Packages.pysqpack: init at 0.3.16
This commit is contained in:
parent
e8995b4f16
commit
8c000f2651
2 changed files with 28 additions and 0 deletions
26
pkgs/development/python-modules/pylsqpack/default.nix
Normal file
26
pkgs/development/python-modules/pylsqpack/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ lib
|
||||
, fetchPypi
|
||||
, buildPythonPackage
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pylsqpack";
|
||||
version = "0.3.16";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-tnps4/aTfYUGgYJ3FL5zCqNhwEnjd1Lj7Z3xHn8jL/s=";
|
||||
};
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "pylsqpack" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python wrapper for the ls-qpack QPACK library";
|
||||
homepage = "https://github.com/aiortc/pylsqpack";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ onny ];
|
||||
};
|
||||
}
|
|
@ -7888,6 +7888,8 @@ in {
|
|||
|
||||
pylru = callPackage ../development/python-modules/pylru { };
|
||||
|
||||
pylsqpack = callPackage ../development/python-modules/pylsqpack { };
|
||||
|
||||
pyls-black = callPackage ../development/python-modules/pyls-black { };
|
||||
|
||||
pyls-flake8 = callPackage ../development/python-modules/pyls-flake8 { };
|
||||
|
|
Loading…
Reference in a new issue