psudohash: 1.0.2 -> 1.1.0 (#415257)

This commit is contained in:
Aleksana 2025-06-22 18:17:05 +08:00 committed by GitHub
commit 43558d56a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,22 +1,24 @@
{
lib,
stdenv,
fetchFromGitHub,
python3,
python3Packages,
}:
stdenv.mkDerivation rec {
python3Packages.buildPythonApplication rec {
pname = "psudohash";
version = "1.0.2";
version = "1.1.0";
pyproject = false;
src = fetchFromGitHub {
owner = "t3l3machus";
repo = "psudohash";
tag = "v${version}";
hash = "sha256-l/Rp9405Wf6vh85PFrRTtTLJE7GPODowseNqEw42J18=";
hash = "sha256-I/vHQraGmIWmx/v+szL5ZQJpjkSBaCpEx0r4Mc6FgKA=";
};
buildInputs = [ python3 ];
dependencies = with python3Packages; [
tqdm
];
installPhase = ''
runHook preInstall