evcc: 0.131.8 -> 0.131.10 (#364658)
[NixPkgs.git] / pkgs / development / python-modules / fordpass / default.nix
blob0a7d9f68e6ec3abb7a4546fc946f09d9c4214a5a
2   lib,
3   requests,
4   buildPythonPackage,
5   fetchFromGitHub,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "fordpass";
11   version = "0.0.4";
12   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchFromGitHub {
16     owner = "clarkd";
17     repo = "fordpass-python";
18     rev = version;
19     sha256 = "0i1dlswxc2bv1smc5d4r1adbxbl7sgr1swh2cjfajp73vs43xa0m";
20   };
22   propagatedBuildInputs = [ requests ];
24   # Project has no tests
25   doCheck = false;
27   pythonImportsCheck = [ "fordpass" ];
29   meta = with lib; {
30     description = "Python module for the FordPass API";
31     mainProgram = "demo.py";
32     homepage = "https://github.com/clarkd/fordpass-python";
33     license = with licenses; [ mit ];
34     maintainers = with maintainers; [ fab ];
35   };