nixpkgs/pkgs/by-name/pa/packj/package.nix
Fabian Affolter cf3f392abe packj: init at 0.15-beta
Tool to detect malicious/vulnerable open-source dependencies

https://github.com/ossillate-inc/packj
2024-01-14 12:07:40 +01:00

63 lines
1.2 KiB
Nix

{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "packj";
version = "0.15-beta";
pyproject = true;
src = fetchFromGitHub {
owner = "ossillate-inc";
repo = "packj";
rev = "refs/tags/v${version}";
hash = "sha256-OWcJE2Gtjgoj9bCGZcHDfAFLWRP4wdENeJAnILMdUXY=";
};
preBuild = ''
export HOME=$(mktemp -d)
'';
nativeBuildInputs = with python3.pkgs; [
setuptools
wheel
];
propagatedBuildInputs = with python3.pkgs; [
asttokens
colorama
django
dnspython
esprima
func-timeout
github3-py
gitpython
networkx
protobuf
pyisemail
python-dateutil
python-gitlab
python-magic
pytz
pyyaml
rarfile
requests
six
tldextract
];
pythonImportsCheck = [
"packj"
];
meta = with lib; {
description = "Tool to detect malicious/vulnerable open-source dependencies";
homepage = "https://github.com/ossillate-inc/packj";
changelog = "https://github.com/ossillate-inc/packj/releases/tag/v${version}";
license = licenses.agpl3Only;
maintainers = with maintainers; [ fab ];
mainProgram = "packj";
};
}