blob: 8f0df391cf0128373a2a79c3ae26b62b93e4bac8 (
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
30
31
32
33
34
35
36
37
38
39
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
pytest-cov-stub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "wheel-filename";
version = "1.4.2";
pyproject = true;
src = fetchFromGitHub {
owner = "jwodder";
repo = "wheel-filename";
tag = "v${version}";
hash = "sha256-KAuUrrSq6HJAy+5Gj6svI4M6oV6Fsle1A79E2q2FKW8=";
};
build-system = [ hatchling ];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
];
pythonImportsCheck = [ "wheel_filename" ];
meta = {
description = "Parse wheel filenames";
homepage = "https://github.com/jwodder/wheel-filename";
changelog = "https://github.com/wheelodex/wheel-filename/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ayazhafiz ];
mainProgram = "wheel-filename";
};
}
|