Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "pycrc"; 9 version = "1.21"; 10 11 src = fetchPypi { 12 pname = "PyCRC"; 13 inherit version; 14 sha256 = "d3b0e788b501f48ae2ff6eeb34652343c9095e4356a65df217ed29b51e4045b6"; 15 }; 16 17 meta = with lib; { 18 homepage = "https://github.com/cristianav/PyCRC"; 19 description = "Python libraries for CRC calculations (it supports CRC-16, CRC-32, CRC-CCITT, etc)"; 20 license = licenses.gpl3; 21 maintainers = with maintainers; [ guibou ]; 22 }; 23}