python313Packages.decora-wifi: refactor

- update pname
- add changelog to meta

Changed files
+4 -4
pkgs
development
python-modules
decora-wifi
+4 -4
pkgs/development/python-modules/decora-wifi/default.nix
···
}:
buildPythonPackage rec {
-
pname = "decora_wifi";
version = "1.5";
pyproject = true;
···
hash = "sha256-oWETtzZueNJC0lTWdLfk3SOuvnqrJ9wp5rOSPJxH3M4=";
};
-
build-system = [
-
setuptools
-
];
dependencies = [
requests
inflect
];
pythonImportsCheck = [ "decora_wifi" ];
# No tests in Pypi source
···
meta = {
description = "Python library for controlling Leviton Decora Smart Wi-Fi devices";
homepage = "https://github.com/tlyakhov/python-decora_wifi";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ Continous ];
};
···
}:
buildPythonPackage rec {
+
pname = "decora-wifi";
version = "1.5";
pyproject = true;
···
hash = "sha256-oWETtzZueNJC0lTWdLfk3SOuvnqrJ9wp5rOSPJxH3M4=";
};
+
build-system = [ setuptools ];
dependencies = [
requests
inflect
];
+
pythonImportsCheck = [ "decora_wifi" ];
# No tests in Pypi source
···
meta = {
description = "Python library for controlling Leviton Decora Smart Wi-Fi devices";
homepage = "https://github.com/tlyakhov/python-decora_wifi";
+
changelog = "https://github.com/tlyakhov/python-decora_wifi/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ Continous ];
};