blob: 43f658c497fd3a29528b26487a36d9c4e04c0bb4 (
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 = "types-xxhash";
version = "3.0.5.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-mfJ/CvFGvrovEIZ30reYCv6N33NZtEUYG/xxOdt2SC4=";
};
build-system = [
setuptools
];
meta = {
description = "Typing stubs for xxhash";
homepage = "https://pypi.org/project/types-xxhash";
changelog = "https://github.com/typeshed-internal/stub_uploader/blob/main/data/changelogs/xxhash.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ nim65s ];
};
}
|