linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pymazda / default.nix
blob77d4f175273bb897566f4e08e607e70ec0966669
1 { lib
2 , aiohttp
3 , buildPythonPackage
4 , cryptography
5 , fetchPypi
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "pymazda";
11   version = "0.1.1";
12   disabled = pythonOlder "3.6";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "sha256-Z0sRfLkOxYmPDZiSKqqbd68dcTDU+x8QhPe/Oo43KEA=";
17   };
19   propagatedBuildInputs = [
20     aiohttp
21     cryptography
22   ];
24   # Project has no tests
25   doCheck = false;
26   pythonImportsCheck = [ "pymazda" ];
28   meta = with lib; {
29     description = "Python client for interacting with the MyMazda API";
30     homepage = "https://github.com/bdr99/pymazda";
31     license = licenses.mit;
32     maintainers = with maintainers; [ fab ];
33   };