pythonPackages.crc32c: init at 2.0

This commit is contained in:
Ben Darwin 2020-01-07 17:02:28 -05:00 committed by Jon
parent acddd86254
commit 81179a4d56
2 changed files with 22 additions and 0 deletions

@ -0,0 +1,20 @@
{ lib, buildPythonPackage, fetchFromGitHub }:
buildPythonPackage rec {
version = "2.0";
pname = "crc32c";
src = fetchFromGitHub {
owner = "ICRAR";
repo = pname;
rev = "v${version}";
sha256 = "15x1sj23n50qdjmi8mjq5wgf5jfn1yv78vjc59wplvl0s50w2dnk";
};
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 ];
};
}

@ -552,6 +552,8 @@ in {
codespell = callPackage ../development/python-modules/codespell { };
crc32c = callPackage ../development/python-modules/crc32c { };
curio = callPackage ../development/python-modules/curio { };
dendropy = callPackage ../development/python-modules/dendropy { };