package.nix (677B)
1 { 2 lib, 3 fetchFromGitHub, 4 python3Packages, 5 }: 6 7 python3Packages.buildPythonPackage rec { 8 pname = "pyrtcm"; 9 version = "1.1.10"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "semuconsulting"; 14 repo = "pyrtcm"; 15 tag = "v${version}"; 16 hash = "sha256-NZmzIMOS3BLkSC1hf2tV770qPpgBQ8uS/VvVh+e5AAs="; 17 }; 18 19 build-system = with python3Packages; [ setuptools ]; 20 21 dependencies = with python3Packages; [ pynmeagps ]; 22 23 pythonImportsCheck = [ "pyrtcm" ]; 24 25 meta = { 26 description = "RTCM3 protocol parser"; 27 homepage = "https://github.com/semuconsulting/pyrtcm"; 28 license = lib.licenses.bsd3; 29 maintainers = [ lib.maintainers.sikmir ]; 30 }; 31 }
