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