Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / sarif-om / default.nix
blobdafaad9d11e337386abff962ca9fcb148df48336
1 { lib, buildPythonPackage, fetchPypi
2 , attrs
3 , pbr
4 }:
6 buildPythonPackage rec {
7   pname = "sarif-om";
8   version = "1.0.4";
9   format = "setuptools";
11   src = fetchPypi {
12     pname = "sarif_om";
13     inherit version;
14     sha256 = "cd5f416b3083e00d402a92e449a7ff67af46f11241073eea0461802a3b5aef98";
15   };
17   nativeBuildInputs = [
18     pbr
19   ];
21   propagatedBuildInputs = [
22     attrs
23   ];
25   pythonImportsCheck = [ "sarif_om" ];
27   # no tests included with tarball
28   doCheck = false;
30   meta = with lib; {
31     description = "Classes implementing the SARIF 2.1.0 object model";
32     homepage = "https://github.com/microsoft/sarif-python-om";
33     license = licenses.mit;
34     maintainers = with maintainers; [ jonringer ];
35   };