nixpkgs/pkgs/development/python-modules/pylacrosse/default.nix
Martin Weinelt 9aaa540da1
python312Packages.pylacrosse: substitute nose with pynose
Fixes the build on Python 3.12.
2024-03-15 15:16:42 +01:00

51 lines
940 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, mock
, pynose
, pyserial
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "pylacrosse";
version = "0.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "hthiery";
repo = "python-lacrosse";
rev = "refs/tags/${version}";
hash = "sha256-jrkehoPLYbutDfxMBO/vlx4nMylTNs/gtvoBTFHFsDw=";
};
postPatch = ''
substituteInPlace setup.py \
--replace "version = version," "version = '${version}',"
'';
propagatedBuildInputs = [
pyserial
];
nativeCheckInputs = [
mock
pynose
pytestCheckHook
];
pythonImportsCheck = [
"pylacrosse"
];
meta = with lib; {
description = "Python library for Jeelink LaCrosse";
homepage = "https://github.com/hthiery/python-lacrosse";
license = with licenses; [ lgpl2Plus ];
maintainers = with maintainers; [ fab ];
};
}