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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "8b6b1afe7731d7d9cbb0398b4a811ebb5e6be5c174f72c68abf81f919a435de9";
  };

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