blob: 4379528dc7c9434b06c986e01951f144200f809e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "xxhash";
version = "3.5.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-hPLK3flRycv43C4iqJ1Mz12GORrGQY/oHjxn0M9gtF8=";
};
nativeBuildInputs = [ setuptools ];
pythonImportsCheck = [ "xxhash" ];
meta = {
description = "Python Binding for xxHash";
homepage = "https://github.com/ifduyue/python-xxhash";
changelog = "https://github.com/ifduyue/python-xxhash/blob/v${version}/CHANGELOG.rst";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ teh ];
};
}
|