0215034f25
when they already rely on SRI hashes.
41 lines
739 B
Nix
41 lines
739 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildPythonPackage
|
|
, pytest
|
|
, python
|
|
, pillow
|
|
, numpy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aggdraw";
|
|
version = "1.3.15";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pytroll";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-w3HlnsHYB0R+HZOXtzygC2RST3gllPI7SYtwSCVXhTU=";
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
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 ];
|
|
};
|
|
}
|