blob: 2326aba56a1f53a8b2a27b71af7f9989f6a61835 (
about) (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
{
lib,
buildPythonPackage,
docutils,
fetchPypi,
pythonOlder,
importlib-metadata,
importlib-resources,
setuptools,
packaging,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pkg-about";
version = "1.2.11";
pyproject = true;
disabled = pythonOlder "3.11";
src = fetchPypi {
pname = "pkg_about";
inherit version;
hash = "sha256-fm/b4Vm7YGTq+BXVltwRz42qXYULXL9KBCINB8mMuWI=";
};
# tox is listed in build requirements but not actually used to build
# keeping it as a requirement breaks the build unnecessarily
postPatch = ''
sed -i "/requires/s/, 'tox>=[^']*'//" pyproject.toml
'';
build-system = [
packaging
setuptools
];
dependencies = [
docutils
importlib-metadata
importlib-resources
packaging
setuptools
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pkg_about" ];
meta = with lib; {
description = "Python metadata sharing at runtime";
homepage = "https://github.com/karpierz/pkg_about/";
changelog = "https://github.com/karpierz/pkg_about/blob/${version}/CHANGES.rst";
license = licenses.zlib;
maintainers = teams.ororatech.members;
};
}
|