84 lines
1.7 KiB
Nix
84 lines
1.7 KiB
Nix
|
{ lib
|
||
|
, fetchFromGitHub
|
||
|
, fetchpatch
|
||
|
, python3
|
||
|
}:
|
||
|
|
||
|
let
|
||
|
py = python3.override {
|
||
|
packageOverrides = self: super: {
|
||
|
|
||
|
# ansible doesn't support resolvelib > 0.6.0 and can't have an override
|
||
|
resolvelib = super.resolvelib.overridePythonAttrs (oldAttrs: rec {
|
||
|
version = "0.8.1";
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "sarugaku";
|
||
|
repo = "resolvelib";
|
||
|
rev = version;
|
||
|
sha256 = "1qpd0gg9yl0kbamlgjs9pkxd39kx511kbc92civ77v0ka5sw8ca0";
|
||
|
};
|
||
|
});
|
||
|
};
|
||
|
};
|
||
|
in
|
||
|
with py.pkgs;
|
||
|
|
||
|
buildPythonApplication rec {
|
||
|
pname = "pip-audit";
|
||
|
version = "2.2.1";
|
||
|
format = "setuptools";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "trailofbits";
|
||
|
repo = pname;
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-ji61783imVlvoBaDMTxQwbf1L1G4lJbOFZ1FjcNOT/8=";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
cachecontrol
|
||
|
cyclonedx-python-lib
|
||
|
html5lib
|
||
|
packaging
|
||
|
pip-api
|
||
|
progress
|
||
|
resolvelib
|
||
|
];
|
||
|
|
||
|
checkInputs = [
|
||
|
pretend
|
||
|
pytestCheckHook
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [
|
||
|
"pip_audit"
|
||
|
];
|
||
|
|
||
|
preCheck = ''
|
||
|
export HOME=$(mktemp -d);
|
||
|
'';
|
||
|
|
||
|
disabledTestPaths = [
|
||
|
# Tests require network access
|
||
|
"test/dependency_source/test_requirement.py"
|
||
|
"test/dependency_source/test_resolvelib.py"
|
||
|
"test/service/test_pypi.py"
|
||
|
"test/service/test_osv.py"
|
||
|
];
|
||
|
|
||
|
disabledTests = [
|
||
|
# Tests requrire network access
|
||
|
"test_get_pip_cache"
|
||
|
"test_virtual_env"
|
||
|
"test_pyproject_source"
|
||
|
"test_pyproject_source_duplicate_deps"
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Tool for scanning Python environments for known vulnerabilities";
|
||
|
homepage = "https://github.com/trailofbits/pip-audit";
|
||
|
license = with licenses; [ asl20 ];
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|