Unverified Commit ef94216f authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python3Packages.pyswitchbot: 0.72.0 -> 0.72.1 (#457280)

parents b819d982 8b876d5e
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -15,14 +15,14 @@

buildPythonPackage rec {
  pname = "pyswitchbot";
  version = "0.72.0";
  version = "0.72.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Danielhiversen";
    repo = "pySwitchbot";
    tag = version;
    hash = "sha256-ouvsAZe3HeaSMdCdia+ttliKMxqNtps/TbHBkri/iaw=";
    hash = "sha256-QwCeq9EnE7oKqTtb6lmMcEw37dOK7WYbDEC984NujzY=";
  };

  build-system = [ setuptools ];
@@ -43,12 +43,12 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "switchbot" ];

  meta = with lib; {
  meta = {
    description = "Python library to control Switchbot IoT devices";
    homepage = "https://github.com/Danielhiversen/pySwitchbot";
    changelog = "https://github.com/Danielhiversen/pySwitchbot/releases/tag/${src.tag}";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
    platforms = platforms.linux;
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
    platforms = lib.platforms.linux;
  };
}