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