Files
nixpkgs/pkgs/development/python-modules/aiomisc-pytest/default.nix
Martin Weinelt e9e5b63271 python3Packages.aiomisc-pytest: 1.2.1 -> 1.3.4
This commit was automatically generated using update-python-libraries.
2025-08-09 18:57:53 +02:00

44 lines
808 B
Nix

{
lib,
aiomisc,
buildPythonPackage,
fetchPypi,
poetry-core,
pytest,
pythonOlder,
}:
buildPythonPackage rec {
pname = "aiomisc-pytest";
version = "1.3.4";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "aiomisc_pytest";
inherit version;
hash = "sha256-9Of1pSUcMiIhkz7OW5erF4oDlf/ABkaamDBPg7+WbBE=";
};
build-system = [ poetry-core ];
pythonRelaxDeps = [ "pytest" ];
buildInputs = [ pytest ];
dependencies = [ aiomisc ];
pythonImportsCheck = [ "aiomisc_pytest" ];
# Module has no tests
doCheck = false;
meta = with lib; {
description = "Pytest integration for aiomisc";
homepage = "https://github.com/aiokitchen/aiomisc-pytest";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}