mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 11:15:12 +00:00
Merge pull request #309921 from fabaff/aiomisc-pytest-bump
python312Packages.aiomisc-pytest: 1.1.2 -> 1.2.1
This commit is contained in:
commit
58c833e8ac
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user