depot/third_party/nixpkgs/pkgs/development/python-modules/sarif-om/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

35 lines
716 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
attrs,
pbr,
}:
buildPythonPackage rec {
pname = "sarif-om";
version = "1.0.4";
format = "setuptools";
src = fetchPypi {
pname = "sarif_om";
inherit version;
sha256 = "cd5f416b3083e00d402a92e449a7ff67af46f11241073eea0461802a3b5aef98";
};
nativeBuildInputs = [ pbr ];
propagatedBuildInputs = [ attrs ];
pythonImportsCheck = [ "sarif_om" ];
# no tests included with tarball
doCheck = false;
meta = with lib; {
description = "Classes implementing the SARIF 2.1.0 object model";
homepage = "https://github.com/microsoft/sarif-python-om";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}