blob: debef819aef3f773b2c70dd2103065bc582801a6 (
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
|
{
buildPythonPackage,
distro-info-data,
fetchurl,
lib,
setuptools,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "distro-info";
version = "1.14";
pyproject = true;
# Not using fetchFromGitLab because it incorrectly sets
# SOURCE_DATE_EPOCH=315619200 (1980-01-02) and breaks tests.
src = fetchurl {
url = "https://salsa.debian.org/debian/distro-info/-/archive/debian/${version}/distro-info-debian-${version}.tar.gz";
hash = "sha256-nRLTlDPnll1jvwfg9FSxs9TmImvQkn9DVqSRSOKTAGI=";
};
postPatch = ''
substituteInPlace python/distro_info.py \
--replace-fail /usr/share/distro-info ${distro-info-data}/share/distro-info
'';
build-system = [ setuptools ];
pypaBuildFlags = "python";
nativeCheckInputs = [
unittestCheckHook
];
preCheck = ''
cd python
rm distro_info_test/test_flake8.py distro_info_test/test_pylint.py
'';
meta = {
description = "Information about Debian and Ubuntu releases";
homepage = "https://salsa.debian.org/debian/distro-info";
changelog = "https://salsa.debian.org/debian/distro-info/-/blob/debian/${version}/debian/changelog";
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ andersk ];
platforms = lib.platforms.all;
};
}
|