python310Packages.crc32c: 2.2.post0 -> 2.3.post0

This commit is contained in:
Ben Darwin 2023-05-13 14:00:48 -04:00
parent 80b81b2fc0
commit 192ebc0adc

View File

@ -1,16 +1,21 @@
{ lib, buildPythonPackage, fetchFromGitHub }:
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder, pytestCheckHook }:
buildPythonPackage rec {
version = "2.2.post0";
version = "2.3.post0";
pname = "crc32c";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "ICRAR";
repo = pname;
rev = "v${version}";
hash = "sha256-0FgNOVpgJTxRALuufZ7Dt1TwuX+zqw35yCq8kmq4RTc=";
rev = "refs/tags/v${version}";
hash = "sha256-lPEojWeAhfWpGR+k+Tuo4n68iZOk7lUDxjWXj5vN4I0=";
};
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Python software implementation and hardware API of CRC32C checksum algorithm";
homepage = "https://github.com/ICRAR/crc32c";