2020-04-24 23:36:52 +00:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2021-07-04 02:40:35 +00:00
|
|
|
version = "2.2.post0";
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "crc32c";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ICRAR";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-03-15 16:39:30 +00:00
|
|
|
hash = "sha256-0FgNOVpgJTxRALuufZ7Dt1TwuX+zqw35yCq8kmq4RTc=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Python software implementation and hardware API of CRC32C checksum algorithm";
|
|
|
|
homepage = "https://github.com/ICRAR/crc32c";
|
|
|
|
license = lib.licenses.lgpl21;
|
|
|
|
maintainers = with lib.maintainers; [ bcdarwin ];
|
|
|
|
};
|
|
|
|
}
|