Merge pull request #210254 from fabaff/pook-bump
python310Packages.pook: 1.0.2 -> 1.1.0
This commit is contained in:
commit
b6d87abbbc
1 changed files with 7 additions and 4 deletions
|
@ -13,14 +13,14 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "pook";
|
||||
version = "1.0.2";
|
||||
version = "1.1.0";
|
||||
disabled = pythonOlder "3.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "h2non";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-4OGcnuajGdBRlXCYwbTK/zLNQRrir60qCYajHRRCpkU=";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-5hVRyZCA5VzufiYh1l9ezob1iuT8/VXhuFjC0OjGsbQ=";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue