14 buildPythonPackage rec {
17 format = "setuptools";
20 inherit pname version;
21 hash = "sha256-LpRUJ6IWdIk7uXYyQB22ITnZHOoe6WE3zHsHrSIZj8c=";
24 postPatch = lib.optionalString stdenvNoCC.hostPlatform.isLinux ''
25 substituteInPlace src/pyudev/_ctypeslib/utils.py \
26 --replace "find_library(name)" "'${lib.getLib udev}/lib/libudev.so'"
35 propagatedBuildInputs = [ six ];
41 # Bunch of failing tests
42 # https://github.com/pyudev/pyudev/issues/187
46 homepage = "https://pyudev.readthedocs.org/";
47 description = "Pure Python libudev binding";
48 license = licenses.lgpl21Plus;
49 maintainers = with maintainers; [ frogamic ];