1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "crcmod";
9 version = "1.7";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "07k0hgr42vw2j92cln3klxka81f33knd7459cn3d8aszvfh52w6w";
15 };
16
17 meta = with lib; {
18 description = "Python module for generating objects that compute the Cyclic Redundancy Check (CRC)";
19 homepage = "https://crcmod.sourceforge.net/";
20 license = licenses.mit;
21 };
22}