summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyudev/default.nix
blob: 8c3c0d86f3b8c0fed20ba580fac56010ec025949 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ lib
, fetchPypi
, buildPythonPackage
, six
, udev
, pytest
, mock
, hypothesis
, docutils
, stdenvNoCC
}:

buildPythonPackage rec {
  pname = "pyudev";
  version = "0.24.1";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-deVNNyGPWsRbDaHw/ZzF5SajysPvHPrUEM96sziwFHE=";
  };

  postPatch = lib.optionalString stdenvNoCC.isLinux ''
    substituteInPlace src/pyudev/_ctypeslib/utils.py \
      --replace "find_library(name)" "'${lib.getLib udev}/lib/libudev.so'"
    '';

  nativeCheckInputs = [ pytest mock hypothesis docutils ];
  propagatedBuildInputs = [ six ];

  checkPhase = ''
    py.test
  '';

  # Bunch of failing tests
  # https://github.com/pyudev/pyudev/issues/187
  doCheck = false;

  meta = with lib; {
    homepage = "https://pyudev.readthedocs.org/";
    description = "Pure Python libudev binding";
    license = licenses.lgpl21Plus;
    maintainers = with maintainers; [ frogamic ];
  };
}