python3Packages.crc32c: init at 1.0.0
This commit is contained in:
parent
160f169f03
commit
2468315f2b
2 changed files with 35 additions and 0 deletions
31
pkgs/development/python-modules/google-crc32c/default.nix
Normal file
31
pkgs/development/python-modules/google-crc32c/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
{ lib, buildPythonPackage, isPy3k, fetchFromGitHub, cffi, crc32c, pytestCheckHook }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "google-crc32c";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
|
disabled = !isPy3k;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "googleapis";
|
||||||
|
repo = "python-crc32c";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0n3ggsxmk1fhq0kz6p5rcj4gypfb05i26fcn7lsawakgl7fzxqyl";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ crc32c ];
|
||||||
|
propagatedBuildInputs = [ cffi ];
|
||||||
|
|
||||||
|
LDFLAGS = "-L${crc32c}/lib";
|
||||||
|
CFLAGS = "-I${crc32c}/include";
|
||||||
|
|
||||||
|
checkInputs = [ pytestCheckHook crc32c ];
|
||||||
|
pythonImportsCheck = [ "google_crc32c" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/googleapis/python-crc32c";
|
||||||
|
description = "Wrapper the google/crc32c hardware-based implementation of the CRC32C hashing algorithm";
|
||||||
|
license = with licenses; [ asl20 ];
|
||||||
|
maintainers = with maintainers; [ freezeboy ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2467,6 +2467,10 @@ in {
|
||||||
|
|
||||||
google-compute-engine = callPackage ../tools/virtualization/google-compute-engine { };
|
google-compute-engine = callPackage ../tools/virtualization/google-compute-engine { };
|
||||||
|
|
||||||
|
google-crc32c = callPackage ../development/python-modules/google-crc32c {
|
||||||
|
inherit (pkgs) crc32c;
|
||||||
|
};
|
||||||
|
|
||||||
google-i18n-address = callPackage ../development/python-modules/google-i18n-address { };
|
google-i18n-address = callPackage ../development/python-modules/google-i18n-address { };
|
||||||
|
|
||||||
google-music = callPackage ../development/python-modules/google-music { };
|
google-music = callPackage ../development/python-modules/google-music { };
|
||||||
|
|
Loading…
Reference in a new issue