python312Packages.keba-kecontact: 3.0.3 -> 4.0.2

Diff: https://github.com/dannerph/keba-kecontact/compare/refs/tags/3.0.3...4.0.2

Changelog: https://github.com/dannerph/keba-kecontact/releases/tag/4.0.2
This commit is contained in:
Fabian Affolter
2024-12-23 22:24:24 +01:00
parent e55ae8eff9
commit 2311cf9983
@@ -3,31 +3,34 @@
asyncio-dgram,
buildPythonPackage,
fetchFromGitHub,
netifaces,
hatchling,
ifaddr,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "keba-kecontact";
version = "3.0.3";
format = "setuptools";
version = "4.0.2";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "dannerph";
repo = "keba-kecontact";
rev = "refs/tags/${version}";
hash = "sha256-gR1ut2IjrU/JMy8/ZFv0jQTB6c3A/tZqtXMpQsapuj0=";
hash = "sha256-HzfoWijsrtDNElqyxWB7f07OTMIoS/fEjmdX59G+Hw0=";
};
propagatedBuildInputs = [
build-system = [ hatchling ];
dependencies = [
asyncio-dgram
netifaces
ifaddr
];
# Module has no tests
doCheck = false;
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "keba_kecontact" ];