Merge pull request #309921 from fabaff/aiomisc-pytest-bump

python312Packages.aiomisc-pytest: 1.1.2 -> 1.2.1
This commit is contained in:
Fabian Affolter 2024-05-08 00:01:34 +02:00 committed by GitHub
commit 58c833e8ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,16 +1,17 @@
{ lib
, aiomisc
, buildPythonPackage
, fetchPypi
, poetry-core
, pytest
, pythonOlder
, pythonRelaxDepsHook
{
lib,
aiomisc,
buildPythonPackage,
fetchPypi,
poetry-core,
pytest,
pythonOlder,
pythonRelaxDepsHook,
}:
buildPythonPackage rec {
pname = "aiomisc-pytest";
version = "1.1.2";
version = "1.2.1";
pyproject = true;
disabled = pythonOlder "3.7";
@ -18,29 +19,20 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "aiomisc_pytest";
inherit version;
hash = "sha256-Zja0cNFrn6mUFlZOtzAtBJ/Gn27akD59qX6p88ytD6w=";
hash = "sha256-4mWP77R3CoX+XhoT6BbxQtxpINpdmeozjYUsegNfMyU=";
};
nativeBuildInputs = [
poetry-core
pythonRelaxDepsHook
];
build-system = [ poetry-core ];
pythonRelaxDeps = [
"pytest"
];
nativeBuildInputs = [ pythonRelaxDepsHook ];
buildInputs = [
pytest
];
pythonRelaxDeps = [ "pytest" ];
propagatedBuildInputs = [
aiomisc
];
buildInputs = [ pytest ];
pythonImportsCheck = [
"aiomisc_pytest"
];
dependencies = [ aiomisc ];
pythonImportsCheck = [ "aiomisc_pytest" ];
# Module has no tests
doCheck = false;