Files
2026-07-15 14:04:39 -04:00

33 lines
673 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "luhn";
version = "0.2.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "mmcloughlin";
repo = "luhn";
rev = version;
hash = "sha256-ZifaCjOVhWdXuzi5n6V+6eVN5vrEHKgUdpSOXoMyR18=";
};
nativeCheckInputs = [ pytestCheckHook ];
enabledTestPaths = [ "test.py" ];
pythonImportsCheck = [ "luhn" ];
meta = {
description = "Python module for generate and verify Luhn check digits";
homepage = "https://github.com/mmcloughlin/luhn";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}