depot/third_party/nixpkgs/pkgs/development/python-modules/hsh/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

49 lines
1,007 B
Nix

{
buildPythonPackage,
fetchFromGitHub,
lib,
commandlines,
unittestCheckHook,
pexpect,
naked,
setuptools,
wheel,
}:
buildPythonPackage rec {
pname = "hsh";
version = "1.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "chrissimpkins";
repo = "hsh";
rev = "v${version}";
hash = "sha256-bAAytoidFHH2dSXqN9aqBd2H4p/rwTWXIZa1t5Djdz0=";
};
propagatedBuildInputs = [ commandlines ];
nativeBuildInputs = [
setuptools
wheel
];
nativeCheckInputs = [
unittestCheckHook
pexpect
naked
];
preCheck = "cd tests";
pythonImportsCheck = [ "hsh" ];
meta = with lib; {
description = "Cross-platform command line application that generates file hash digests and performs file integrity checks via file hash digest comparisons";
homepage = "https://github.com/chrissimpkins/hsh";
downloadPage = "https://github.com/chrissimpkins/hsh/releases";
license = licenses.mit;
maintainers = [ maintainers.lucasew ];
};
}