nixpkgs/pkgs/development/python-modules/qrcode/default.nix
Martin Weinelt eefbea9557
python310Packages.qrcode: propagate setuptools
The console script imports pkg_resources at runtime.

Also add a test, that calls the executable and verifies the version.
2023-05-16 21:00:37 +02:00

59 lines
1 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, pillow
, pypng
, typing-extensions
, mock
, pytestCheckHook
, testers
, qrcode
}:
buildPythonPackage rec {
pname = "qrcode";
version = "7.4.2";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-ndlpRUgn4Sfb2TaWsgdHI55tVA4IKTfJDxSslbMPWEU=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
typing-extensions
pypng
# imports pkg_resouces in console_scripts.py
setuptools
];
passthru.optional-dependencies.pil = [
pillow
];
nativeCheckInputs = [
mock
pytestCheckHook
] ++ passthru.optional-dependencies.pil;
passthru.tests = {
version = testers.testVersion {
package = qrcode;
command = "qr --version";
};
};
meta = with lib; {
description = "Python QR Code image generator";
homepage = "https://github.com/lincolnloop/python-qrcode";
changelog = "https://github.com/lincolnloop/python-qrcode/blob/v${version}/CHANGES.rst";
license = licenses.bsd3;
};
}