504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
18 lines
464 B
Nix
18 lines
464 B
Nix
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "crcmod";
|
|
version = "1.7";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "07k0hgr42vw2j92cln3klxka81f33knd7459cn3d8aszvfh52w6w";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Python module for generating objects that compute the Cyclic Redundancy Check (CRC)";
|
|
homepage = "https://crcmod.sourceforge.net/";
|
|
license = licenses.mit;
|
|
};
|
|
}
|