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