Merge pull request #180800 from r-ryantm/auto-update/python3.10-mongomock

python310Packages.mongomock: 4.0.0 -> 4.1.2
This commit is contained in:
Fabian Affolter 2022-07-09 11:11:34 +02:00 committed by GitHub
commit 2548753965
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,19 +1,23 @@
{ lib
, buildPythonPackage
, fetchPypi
, packaging
, pbr
, sentinels
, six
, pytestCheckHook
, pythonOlder
, sentinels
}:
buildPythonPackage rec {
pname = "mongomock";
version = "4.0.0";
version = "4.1.2";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-sYMsN0jUdETBiGc3PlzqdUwub2RKDPv9Zn8Xj2i97Pw=";
hash = "sha256-8GzWKvuK4+9jujE0mr0iCmV+8N1PAkOilYfFIT+TG30=";
};
nativeBuildInputs = [
@ -21,15 +25,17 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
packaging
sentinels
six
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "mongomock" ];
pythonImportsCheck = [
"mongomock"
];
meta = with lib; {
homepage = "https://github.com/mongomock/mongomock";