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