ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / fi / fileinfo / package.nix
blob08a85eaa3efefc420197b947b3e942b33c13ff72
1 { lib
2 , python3Packages
3 , fetchFromGitHub
4 }:
5 python3Packages.buildPythonApplication {
6   pname = "fileinfo";
7   version = "unstable-2022-09-16";
8   src = fetchFromGitHub {
9     owner = "sdushantha";
10     repo = "fileinfo";
11     rev = "503f26189ad5043bad3fe71333dd5ba3ffbce485";
12     hash = "sha256-tEmCsR3LmTxeDZAbMvbIwqp/6uaGNUhgGlm18gdsnOw=";
13   };
15   propagatedBuildInputs = with python3Packages; [ requests ];
17   meta = with lib; {
18     homepage = "https://github.com/sdushantha/fileinfo";
19     description = "File extension metadata lookup tool";
20     license = licenses.mit;
21     maintainers = with maintainers; [ h7x4 ];
22     mainProgram = "fileinfo";
23   };