python3Packages.name-that-hash: init at 1.10
This commit is contained in:
parent
517109653f
commit
db30191b78
3 changed files with 48 additions and 0 deletions
44
pkgs/development/python-modules/name-that-hash/default.nix
Normal file
44
pkgs/development/python-modules/name-that-hash/default.nix
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, poetry-core
|
||||||
|
, click
|
||||||
|
, rich
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "name-that-hash";
|
||||||
|
version = "1.10";
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "HashPals";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-3sddUPoC3NfKQzmNgqPf/uHaYN9VZBqsmV712uz1Phg=";
|
||||||
|
};
|
||||||
|
|
||||||
|
# TODO remove on next update which bumps rich
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace pyproject.toml --replace 'rich = ">=9.9,<11.0"' 'rich = ">=9.9"'
|
||||||
|
'';
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
poetry-core
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
click
|
||||||
|
rich
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "name_that_hash" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
longDescription = "Don't know what type of hash it is? Name That Hash will name that hash type! Identify MD5, SHA256 and 300+ other hashes.";
|
||||||
|
description = "Module and CLI for the identification of hashes";
|
||||||
|
homepage = "https://github.com/HashPals/Name-That-Hash";
|
||||||
|
license = with licenses; [ gpl3Plus ];
|
||||||
|
maintainers = with maintainers; [ eyjhb ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -8660,6 +8660,8 @@ with pkgs;
|
||||||
|
|
||||||
notable = callPackage ../applications/misc/notable { };
|
notable = callPackage ../applications/misc/notable { };
|
||||||
|
|
||||||
|
nth = with python3Packages; toPythonApplication name-that-hash;
|
||||||
|
|
||||||
ntlmrecon = callPackage ../tools/security/ntlmrecon { };
|
ntlmrecon = callPackage ../tools/security/ntlmrecon { };
|
||||||
|
|
||||||
numberstation = callPackage ../applications/misc/numberstation { };
|
numberstation = callPackage ../applications/misc/numberstation { };
|
||||||
|
|
|
@ -5519,6 +5519,8 @@ in {
|
||||||
|
|
||||||
names = callPackage ../development/python-modules/names { };
|
names = callPackage ../development/python-modules/names { };
|
||||||
|
|
||||||
|
name-that-hash = callPackage ../development/python-modules/name-that-hash { };
|
||||||
|
|
||||||
nampa = callPackage ../development/python-modules/nampa { };
|
nampa = callPackage ../development/python-modules/nampa { };
|
||||||
|
|
||||||
nanoleaf = callPackage ../development/python-modules/nanoleaf { };
|
nanoleaf = callPackage ../development/python-modules/nanoleaf { };
|
||||||
|
|
Loading…
Reference in a new issue