nixpkgs-suyu/pkgs/development/python-modules/crc32c/default.nix

21 lines
534 B
Nix
Raw Normal View History

2020-01-07 23:02:28 +01:00
{ lib, buildPythonPackage, fetchFromGitHub }:
buildPythonPackage rec {
2020-07-26 00:12:21 +02:00
version = "2.0.1";
2020-01-07 23:02:28 +01:00
pname = "crc32c";
src = fetchFromGitHub {
owner = "ICRAR";
repo = pname;
rev = "v${version}";
2020-07-26 00:12:21 +02:00
sha256 = "0vyac7pchh083h5qdjwhhacfq77frkrq1bjzsn51qv1vwcdrpnrf";
2020-01-07 23:02:28 +01: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 ];
};
}