pythonPackages.crc32c: init at 2.0
This commit is contained in:
parent
acddd86254
commit
81179a4d56
20
pkgs/development/python-modules/crc32c/default.nix
Normal file
20
pkgs/development/python-modules/crc32c/default.nix
Normal file
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user