2018-06-23 14:27:58 +01:00
|
|
|
{ lib, fetchPypi, buildPythonPackage
|
2017-03-29 07:33:32 +01:00
|
|
|
, six, systemd, pytest, mock, hypothesis, docutils
|
2017-03-09 12:40:56 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "pyudev";
|
2017-03-09 12:40:56 +00:00
|
|
|
version = "0.21.0";
|
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-03-09 12:40:56 +00:00
|
|
|
sha256 = "0arz0dqp75sszsmgm6vhg92n1lsx91ihddx3m944f4ah0487ljq9";
|
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
2017-03-29 07:33:32 +01:00
|
|
|
substituteInPlace src/pyudev/_ctypeslib/utils.py \
|
|
|
|
--replace "find_library(name)" "'${systemd.lib}/lib/libudev.so'"
|
2017-03-09 12:40:56 +00:00
|
|
|
'';
|
|
|
|
|
2019-01-05 10:54:27 +00:00
|
|
|
checkInputs = [ pytest mock hypothesis docutils ];
|
2017-03-09 12:40:56 +00:00
|
|
|
propagatedBuildInputs = [ systemd six ];
|
|
|
|
|
2017-03-29 07:33:32 +01:00
|
|
|
checkPhase = ''
|
|
|
|
py.test
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Bunch of failing tests
|
|
|
|
# https://github.com/pyudev/pyudev/issues/187
|
|
|
|
doCheck = false;
|
|
|
|
|
2017-03-09 12:40:56 +00:00
|
|
|
meta = {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://pyudev.readthedocs.org/;
|
2017-03-09 12:40:56 +00:00
|
|
|
description = "Pure Python libudev binding";
|
|
|
|
license = lib.licenses.lgpl21Plus;
|
|
|
|
};
|
|
|
|
}
|