python3Packages.plux: 1.5.0 -> 1.10.0

This commit is contained in:
Martin Weinelt
2024-06-24 12:15:50 +02:00
parent 38067d2735
commit 391ec2f456
@@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "plux";
version = "1.5.0";
version = "1.10.0";
pyproject = true;
# Tests are not available from PyPi
@@ -18,18 +18,22 @@ buildPythonPackage rec {
owner = "localstack";
repo = "plux";
rev = "refs/tags/v${version}";
hash = "sha256-XHRQTgvxXJCjCD/9Invf/5OCtp12A5poRUv8tR9DJsk=";
hash = "sha256-krlI7WimBluzkw3MVtGeotK5NFf+gsaUfL4CfhNPfpE=";
};
nativeBuildInputs = [
build-system = [
setuptools
wheel
];
propagatedBuildInputs = [ stevedore ];
dependencies = [ stevedore ];
nativeCheckInputs = [ pytestCheckHook ];
preCheck = ''
export HOME=$TMPDIR
'';
pythonImportsCheck = [ "plugin.core" ];
meta = with lib; {