{ lib, buildPythonPackage, fetchFromGitHub, setuptools, }: buildPythonPackage rec { pname = "checksumdir"; version = "1.3.0"; pyproject = true; src = fetchFromGitHub { owner = "to-mc"; repo = "checksumdir"; tag = version; hash = "sha256-rOHRJAK+Or8bwAtzpbINdnEjK3WQcU+4sEZI91tMvAk="; }; nativeBuildInputs = [ setuptools ]; doCheck = false; # Package does not contain tests pythonImportsCheck = [ "checksumdir" ]; meta = { description = "Simple package to compute a single deterministic hash of the file contents of a directory"; homepage = "https://github.com/to-mc/checksumdir"; license = lib.licenses.mit; maintainers = [ ]; }; }