Fabian Affolter 2024-04-26 19:00:16 +02:00
parent e07f196286
commit 4f04a9fa82
1 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@
buildPythonPackage rec {
pname = "vacuum-map-parser-roborock";
version = "0.1.1";
version = "0.1.2";
pyproject = true;
disabled = pythonOlder "3.11";
@ -18,7 +18,7 @@ buildPythonPackage rec {
owner = "PiotrMachowski";
repo = "Python-package-${pname}";
rev = "refs/tags/v${version}";
hash = "sha256-cZNmoqzU73iF965abFeM6qgEVmg6j2kIQHDhj1MYQpE=";
hash = "sha256-y7Q8C7ZvOn/KSUMJ7A/oH+HZMVBpuPitsXqsqHvvYHE=";
};
postPatch = ''
@ -27,9 +27,9 @@ buildPythonPackage rec {
--replace "0.0.0" "${version}"
'';
nativeBuildInputs = [ poetry-core ];
build-system = [ poetry-core ];
propagatedBuildInputs = [
dependencies = [
pillow
vacuum-map-parser-base
];
@ -40,8 +40,8 @@ buildPythonPackage rec {
pythonImportsCheck = [ "vacuum_map_parser_roborock" ];
meta = with lib; {
homepage = "https://github.com/PiotrMachowski/Python-package-vacuum-map-parser-roborock";
description = "Functionalities for Roborock vacuum map parsing";
homepage = "https://github.com/PiotrMachowski/Python-package-vacuum-map-parser-roborock";
changelog = "https://github.com/PiotrMachowski/Python-package-vacuum-map-parser-roborock/releases/tag/v${version}";
maintainers = with maintainers; [ jamiemagee ];
license = licenses.asl20;