depot/third_party/nixpkgs/pkgs/development/python-modules/pytlv/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

32 lines
638 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
setuptools,
}:
buildPythonPackage rec {
pname = "pytlv";
version = "0.71";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-btxZ0oQzn1ZpwXihHlg6CduLh8nkerLV7SoFyXzJjVY=";
};
nativeBuildInputs = [ setuptools ];
pythonImportsCheck = [ "pytlv" ];
meta = with lib; {
description = "TLV (tag length lavue) data parser, especially useful for EMV tags parsing";
homepage = "https://github.com/timgabets/pytlv";
license = licenses.lgpl2;
maintainers = with maintainers; [
flokli
janik
];
};
}