about summary refs log tree commit diff
path: root/pkgs/by-name/ha/hashid/package.nix
blob: 5679fb1a272d34f5418e3e9d86213718464f781e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, stdenv
, fetchFromGitHub
, python3Packages
}:

python3Packages.buildPythonApplication {
  pname = "hashid";
  version = "3.1.4-unstable-2015-03-17";

  src = fetchFromGitHub {
    owner = "psypanda";
    repo = "hashID";
    rev = "7e8473a823060e56d4b6090a98591e252bd9505e";
    hash = "sha256-R2r/UYRcHbpfOz/XqtSUIpd826eT1Erfo7frAiArT34=";
  };

  meta = with lib; {
    description = "Software to identify the different types of hashes";
    homepage = "https://github.com/psypanda/hashID";
    mainProgram = "hashid";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ d3vil0p3r ];
  };
}