at 23.05-pre 503 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "PyCRC"; 5 version = "1.21"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "d3b0e788b501f48ae2ff6eeb34652343c9095e4356a65df217ed29b51e4045b6"; 10 }; 11 12 meta = with lib; { 13 homepage = "https://github.com/cristianav/PyCRC"; 14 description = "Python libraries for CRC calculations (it supports CRC-16, CRC-32, CRC-CCITT, etc)"; 15 license = licenses.gpl3; 16 maintainers = with maintainers; [ guibou ]; 17 }; 18}