blob: 072e4f14ea0378b08910151e33c7656c626ae3fc (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
sabnzbd,
}:
buildPythonPackage rec {
pname = "sabctools";
version = "9.3.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-CE11hjSkZFSmeUh3V3U4y/z77wS/hBUHRo40Y19YnX4=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "sabctools" ];
passthru.tests = {
inherit sabnzbd;
};
meta = {
description = "C implementations of functions for use within SABnzbd";
homepage = "https://github.com/sabnzbd/sabctools";
changelog = "https://github.com/sabnzbd/sabctools/releases/tag/v${version}";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ adamcstephens ];
};
}
|