Unverified Commit 387a397f authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.pybotvac: 0.0.28 -> 0.0.29 (#508258)

parents 0c33d38e c7542504
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -8,14 +8,14 @@
  setuptools,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "pybotvac";
  version = "0.0.28";
  version = "0.0.29";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-XIGG8HmjI3dSq42co2e05xHIYjIM39qVanMJLDqWFCg=";
    inherit (finalAttrs) pname version;
    hash = "sha256-9mapPFzdAAzHJFuFaxiyGh0utznzTSXzRa6AZRj/Oq8=";
  };

  build-system = [ setuptools ];
@@ -34,8 +34,8 @@ buildPythonPackage rec {
  meta = {
    description = "Python module for interacting with Neato Botvac Connected vacuum robots";
    homepage = "https://github.com/stianaske/pybotvac";
    changelog = "https://github.com/stianaske/pybotvac/releases/tag/v${version}";
    changelog = "https://github.com/stianaske/pybotvac/releases/tag/v${finalAttrs.version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})