psudohash: 1.0.2 -> 1.1.0 (#415257)
This commit is contained in:
@@ -1,22 +1,24 @@
|
|||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
stdenv,
|
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
python3,
|
python3Packages,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "psudohash";
|
pname = "psudohash";
|
||||||
version = "1.0.2";
|
version = "1.1.0";
|
||||||
|
pyproject = false;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "t3l3machus";
|
owner = "t3l3machus";
|
||||||
repo = "psudohash";
|
repo = "psudohash";
|
||||||
tag = "v${version}";
|
tag = "v${version}";
|
||||||
hash = "sha256-l/Rp9405Wf6vh85PFrRTtTLJE7GPODowseNqEw42J18=";
|
hash = "sha256-I/vHQraGmIWmx/v+szL5ZQJpjkSBaCpEx0r4Mc6FgKA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ python3 ];
|
dependencies = with python3Packages; [
|
||||||
|
tqdm
|
||||||
|
];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
runHook preInstall
|
runHook preInstall
|
||||||
|
|||||||
Reference in New Issue
Block a user