mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
Merge pull request #291462 from mihaimaruseac/add-magika
python3Packages.magika: init at 0.5.0
This commit is contained in:
commit
720d7993a8
@ -12705,6 +12705,12 @@
|
||||
githubId = 635591;
|
||||
name = "Shahar Dawn Or";
|
||||
};
|
||||
mihaimaruseac = {
|
||||
email = "mihaimaruseac@gmail.com";
|
||||
github = "mihaimaruseac";
|
||||
githubId = 323199;
|
||||
name = "Mihai Maruseac";
|
||||
};
|
||||
mihnea-s = {
|
||||
email = "mihn.stn@gmail.com";
|
||||
github = "mihnea-s";
|
||||
|
54
pkgs/development/python-modules/magika/default.nix
Normal file
54
pkgs/development/python-modules/magika/default.nix
Normal file
@ -0,0 +1,54 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, click
|
||||
, fetchPypi
|
||||
, magika
|
||||
, numpy
|
||||
, onnxruntime
|
||||
, poetry-core
|
||||
, python-dotenv
|
||||
, pythonOlder
|
||||
, stdenv
|
||||
, tabulate
|
||||
, testers
|
||||
, tqdm
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "magika";
|
||||
version = "0.5.0";
|
||||
pyproject = true;
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-r6C7iDCG/o3JEvweQGb4upr+LuHvmNtkwtduZGehCsc=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
click
|
||||
numpy
|
||||
onnxruntime
|
||||
python-dotenv
|
||||
tabulate
|
||||
tqdm
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "magika" ];
|
||||
|
||||
passthru.tests.version = testers.testVersion { package = magika; };
|
||||
|
||||
meta = with lib; {
|
||||
description = "Magika: Detect file content types with deep learning";
|
||||
homepage = "https://github.com/google/magika";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ mihaimaruseac ];
|
||||
mainProgram = "magika";
|
||||
# Currently, disabling on AArch64 as it onnx runtime crashes on ofborg
|
||||
broken = stdenv.isAarch64 && stdenv.isLinux;
|
||||
};
|
||||
}
|
@ -1085,6 +1085,8 @@ with pkgs;
|
||||
|
||||
ruler = callPackage ../tools/security/ruler { };
|
||||
|
||||
magika = with python3Packages; toPythonApplication magika;
|
||||
|
||||
mblock-mlink = callPackage ../development/tools/mblock-mlink { };
|
||||
|
||||
mod = callPackage ../development/tools/mod { };
|
||||
|
@ -6911,6 +6911,8 @@ self: super: with self; {
|
||||
|
||||
magic-wormhole-transit-relay = callPackage ../development/python-modules/magic-wormhole-transit-relay { };
|
||||
|
||||
magika = callPackage ../development/python-modules/magika { };
|
||||
|
||||
mahotas = callPackage ../development/python-modules/mahotas { };
|
||||
|
||||
mailcap-fix = callPackage ../development/python-modules/mailcap-fix { };
|
||||
|
Loading…
Reference in New Issue
Block a user