Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pytrafikverket / default.nix
blob0a65a960fb79c9f77e6d38a93f132040e2e0906c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , aiohttp
5 , async-timeout
6 , lxml
7 }:
9 buildPythonPackage rec {
10   pname = "pytrafikverket";
11   version = "0.1.6.2";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "0hrjsw53ixgmhsiszdrzzh0wma705nrhq8npzacsyaf43r29zvqy";
16   };
18   propagatedBuildInputs = [
19     aiohttp
20     async-timeout
21     lxml
22   ];
24   # Project has no tests
25   doCheck = false;
26   pythonImportsCheck = [ "pytrafikverket" ];
28   meta = with lib; {
29     description = "Python library to manage Etekcity Devices and Levoit Air Purifier";
30     homepage = "https://github.com/endor-force/pytrafikverket";
31     license = with licenses; [ mit ];
32     maintainers = with maintainers; [ fab ];
33   };