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

python3Packages.pybotvac: migrate to finalAttrs

parent acb0df8d
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -8,13 +8,13 @@
  setuptools,
}:

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

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

@@ -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 ];
  };
}
})