evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / pyqwikswitch / default.nix
blob5ccd23833092eabd72a1594430cd9caf4054cb42
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   attrs,
6   requests,
7 }:
9 buildPythonPackage rec {
10   pname = "pyqwikswitch";
11   version = "0.94";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-IpyWz+3EMr0I+xULBJJhBgdnQHNPJIM1SqKFLpszhQc=";
17   };
19   propagatedBuildInputs = [
20     attrs
21     requests
22   ];
24   pythonImportsCheck = [
25     "pyqwikswitch"
26     "pyqwikswitch.threaded"
27   ];
29   doCheck = false; # no tests in sdist
31   meta = with lib; {
32     description = "QwikSwitch USB Modem API binding for Python";
33     homepage = "https://github.com/kellerza/pyqwikswitch";
34     license = licenses.mit;
35     maintainers = teams.home-assistant.members;
36   };