15 buildPythonPackage rec {
16 pname = "seatconnect";
18 format = "setuptools";
20 disabled = pythonOlder "3.8";
22 src = fetchFromGitHub {
25 rev = "refs/tags/${version}";
26 hash = "sha256-HITVrI0o94a61gy/TYSGFtLBYX4Rw/dK1o2/KsvHLTQ=";
29 nativeBuildInputs = [ setuptools-scm ];
31 propagatedBuildInputs = [
40 # Project only has a dummy test
43 pythonImportsCheck = [ "seatconnect" ];
46 description = "Python module to communicate with Seat Connect";
47 homepage = "https://github.com/farfar/seatconnect";
48 changelog = "https://github.com/Farfar/seatconnect/releases/tag/${version}";
49 license = with licenses; [ asl20 ];
50 maintainers = with maintainers; [ fab ];