mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 11:03:57 +00:00
python3Packages.sarif-om: init at 1.0.4
This commit is contained in:
parent
87acd0eb02
commit
7270fad50f
35
pkgs/development/python-modules/sarif-om/default.nix
Normal file
35
pkgs/development/python-modules/sarif-om/default.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchPypi
|
||||||
|
, attrs
|
||||||
|
, pbr
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "sarif-om";
|
||||||
|
version = "1.0.4";
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -8467,6 +8467,8 @@ in {
|
|||||||
|
|
||||||
sapi-python-client = callPackage ../development/python-modules/sapi-python-client { };
|
sapi-python-client = callPackage ../development/python-modules/sapi-python-client { };
|
||||||
|
|
||||||
|
sarif-om = callPackage ../development/python-modules/sarif-om { };
|
||||||
|
|
||||||
sarge = callPackage ../development/python-modules/sarge { };
|
sarge = callPackage ../development/python-modules/sarge { };
|
||||||
|
|
||||||
sasmodels = callPackage ../development/python-modules/sasmodels { };
|
sasmodels = callPackage ../development/python-modules/sasmodels { };
|
||||||
|
Loading…
Reference in New Issue
Block a user