python3Packages.spidev: set platforms to linux only (#122091)

The module interfaces with the linux kernel and its sysfs, so it is
unsupported on anything but Linux.
This commit is contained in:
Martin Weinelt 2021-05-07 22:24:18 +02:00 committed by GitHub
parent 3c83aecc60
commit dfaca8a8ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,6 +19,7 @@ buildPythonPackage rec {
description = "Python bindings for Linux SPI access through spidev";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
platforms = platforms.linux;
};
}