Files
nixpkgs/pkgs/development/python-modules/checksumdir/default.nix
2025-08-20 22:13:52 +00:00

35 lines
779 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pythonOlder,
}:
buildPythonPackage rec {
pname = "checksumdir";
version = "1.3.0";
pyproject = true;
disabled = pythonOlder "3.6";
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 = with lib; {
description = "Simple package to compute a single deterministic hash of the file contents of a directory";
homepage = "https://github.com/to-mc/checksumdir";
license = licenses.mit;
maintainers = with maintainers; [ mbalatsko ];
};
}