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
|
{
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
setuptools,
versioningit,
attrs,
platformdirs,
tomli,
}:
buildPythonPackage rec {
pname = "pueblo";
version = "0.0.13";
pyproject = true;
disabled = pythonOlder "3.11";
# This tarball doesn't include tests unfortunately, and the GitHub tarball
# could have been an alternative, but versioningit fails to detect the
# version of it correctly, even with setuptools-scm and
# SETUPTOOLS_SCM_PRETEND_VERSION = version added. Since this is a pure Python
# package, we can rely on upstream to run the tests before releasing, and it
# should work for us as well.
src = fetchPypi {
inherit pname version;
hash = "sha256-EewRittG90ZHRklGtXHtEJ83DWzA6f0iKfX87YlmVgY=";
};
build-system = [
setuptools
versioningit
];
dependencies = [
attrs
platformdirs
tomli
];
doCheck = false; # no tests in sdist
pythonImportsCheck = [ "pueblo" ];
meta = {
description = "Python toolbox library";
homepage = "https://github.com/pyveci/pueblo";
license = lib.licenses.lgpl3Only;
maintainers = with lib.maintainers; [ doronbehar ];
};
}
|