fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
41 lines
824 B
Nix
41 lines
824 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
unittestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyserial";
|
|
version = "3.5";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-PHfgFBcN//vYFub/wgXphC77EL6fWOwW0+hnW0klzds=";
|
|
};
|
|
|
|
patches = [
|
|
./001-rfc2217-only-negotiate-on-value-change.patch
|
|
./002-rfc2217-timeout-setter-for-rfc2217.patch
|
|
];
|
|
|
|
doCheck = !stdenv.hostPlatform.isDarwin; # broken on darwin
|
|
|
|
nativeCheckInputs = [ unittestCheckHook ];
|
|
|
|
unittestFlagsArray = [
|
|
"-s"
|
|
"test"
|
|
];
|
|
|
|
pythonImportsCheck = [ "serial" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python serial port extension";
|
|
homepage = "https://github.com/pyserial/pyserial";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ makefu ];
|
|
};
|
|
}
|