python310Packages.pook: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-01-11 21:52:19 +01:00
parent c3b9f2238f
commit d4617c31bb

View file

@ -19,8 +19,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "h2non";
repo = pname;
rev = "v${version}";
sha256 = "sha256-4OGcnuajGdBRlXCYwbTK/zLNQRrir60qCYajHRRCpkU=";
rev = "refs/tags/v${version}";
hash = "sha256-4OGcnuajGdBRlXCYwbTK/zLNQRrir60qCYajHRRCpkU=";
};
propagatedBuildInputs = [
@ -36,11 +36,14 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [ "pook" ];
pythonImportsCheck = [
"pook"
];
meta = with lib; {
description = "HTTP traffic mocking and testing made simple in Python";
homepage = "https://github.com/h2non/pook";
changelog = "https://github.com/h2non/pook/blob/v${version}/History.rst";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};