python3Packages.aiomisc-pytest: 1.3.4 -> 2.0.0

This commit is contained in:
Fabian Affolter
2026-08-24 12:51:14 +02:00
parent 09fc1dfd42
commit d43bc5bd7e

View File

@@ -3,25 +3,25 @@
aiomisc,
buildPythonPackage,
fetchPypi,
poetry-core,
hatchling,
pytest,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "aiomisc-pytest";
version = "1.3.4";
version = "2.0.0";
pyproject = true;
src = fetchPypi {
pname = "aiomisc_pytest";
inherit version;
hash = "sha256-9Of1pSUcMiIhkz7OW5erF4oDlf/ABkaamDBPg7+WbBE=";
inherit (finalAttrs) version;
hash = "sha256-cbYrkO6YRSPFfhjgdXzuVA2wY5RyEmWcG+myGZu1TGU=";
};
build-system = [ poetry-core ];
pythonRelaxDeps = [ "pytest" ];
build-system = [ hatchling ];
buildInputs = [ pytest ];
dependencies = [ aiomisc ];
@@ -37,4 +37,4 @@ buildPythonPackage rec {
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
})