summary refs log tree commit diff
path: root/pkgs/development/python-modules/xxhash/default.nix
blob: f70526da6a106ebc7280e132155ea5f20728febf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  version = "3.0.0";
  pname = "xxhash";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-MLLZeq8R+xIgI/a0TruXxpVengDXRhqWQVygMLXOucc=";
  };

  meta = with lib; {
    homepage = "https://github.com/ifduyue/python-xxhash";
    description = "Python Binding for xxHash https://pypi.org/project/xxhash/";
    license = licenses.bsd2;
    maintainers = [ maintainers.teh ];
  };
}