Commit d4617c31 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python310Packages.pook: add changelog to meta

parent c3b9f223
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -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 ];
  };