linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / google-crc32c / default.nix
blobb36635654a9d5e3a9c9012eaea6bd10c9828ffba
1 { lib, buildPythonPackage, fetchFromGitHub, cffi, crc32c, pytestCheckHook }:
3 buildPythonPackage rec {
4   pname = "google-crc32c";
5   version = "1.1.2";
7   src = fetchFromGitHub {
8     owner = "googleapis";
9     repo = "python-crc32c";
10     rev = "v${version}";
11     sha256 = "058g69yp7x41mv0d84yp31jv64fpm4r25b86rvvqgc6n74w6jj7k";
12   };
14   buildInputs = [ crc32c ];
16   propagatedBuildInputs = [ cffi ];
18   LDFLAGS = "-L${crc32c}/lib";
19   CFLAGS = "-I${crc32c}/include";
21   checkInputs = [ pytestCheckHook crc32c ];
23   pythonImportsCheck = [ "google_crc32c" ];
25   meta = with lib; {
26     homepage = "https://github.com/googleapis/python-crc32c";
27     description = "Wrapper the google/crc32c hardware-based implementation of the CRC32C hashing algorithm";
28     license = with licenses; [ asl20 ];
29     maintainers = with maintainers; [ freezeboy SuperSandro2000 ];
30   };