2022-08-21 13:32:41 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
2023-11-16 04:20:00 +00:00
|
|
|
, fetchpatch
|
2022-08-21 13:32:41 +00:00
|
|
|
, buildPythonPackage
|
2023-08-04 22:07:22 +00:00
|
|
|
, packaging
|
|
|
|
, setuptools
|
|
|
|
, pkgconfig
|
|
|
|
, freetype
|
2022-08-21 13:32:41 +00:00
|
|
|
, pytest
|
|
|
|
, python
|
|
|
|
, pillow
|
|
|
|
, numpy
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aggdraw";
|
2023-05-24 13:37:59 +00:00
|
|
|
version = "1.3.16";
|
2023-08-04 22:07:22 +00:00
|
|
|
format = "pyproject";
|
2022-08-21 13:32:41 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pytroll";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-05-24 13:37:59 +00:00
|
|
|
hash = "sha256-2yajhuRyQ7BqghbSgPClW3inpw4TW2DhgQbomcRFx94=";
|
2022-08-21 13:32:41 +00:00
|
|
|
};
|
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
patches = [
|
|
|
|
# Removes `register` storage class specifier, which is not allowed in C++17.
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/pytroll/aggdraw/commit/157ed49803567e8c3eeb7dfeff4c116db35747f7.patch";
|
|
|
|
hash = "sha256-QSzpO90u5oSBWUzehRFbXgZ1ApEfLlfp11MUx6w11aI=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2023-08-04 22:07:22 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
packaging
|
|
|
|
setuptools
|
|
|
|
pkgconfig
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
freetype
|
|
|
|
];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2022-08-21 13:32:41 +00:00
|
|
|
numpy
|
|
|
|
pillow
|
|
|
|
pytest
|
|
|
|
];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
${python.interpreter} selftest.py
|
|
|
|
runHook postCheck
|
|
|
|
'';
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "aggdraw" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "High quality drawing interface for PIL";
|
|
|
|
homepage = "https://github.com/pytroll/aggdraw";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ onny ];
|
|
|
|
};
|
|
|
|
}
|