11 buildPythonPackage rec {
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
20 repo = "python-lacrosse";
21 rev = "refs/tags/${version}";
22 hash = "sha256-jrkehoPLYbutDfxMBO/vlx4nMylTNs/gtvoBTFHFsDw=";
26 substituteInPlace setup.py \
27 --replace "version = version," "version = '${version}',"
30 propagatedBuildInputs = [
40 pythonImportsCheck = [
45 description = "Python library for Jeelink LaCrosse";
46 homepage = "https://github.com/hthiery/python-lacrosse";
47 license = with licenses; [ lgpl2Plus ];
48 maintainers = with maintainers; [ fab ];