mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
25 lines
648 B
Nix
25 lines
648 B
Nix
{ lib, buildPythonPackage, fetchPypi, PyGithub, python-gitlab }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "criticality_score";
|
|
version = "1.0.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0i811a27i87z3j1rw0dwrnw8v0ckbd918ms6shjawhs4cnb1c6x8";
|
|
};
|
|
|
|
propagatedBuildInputs = [ PyGithub python-gitlab ];
|
|
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "criticality_score" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python tool for computing the Open Source Project Criticality Score.";
|
|
homepage = "https://github.com/ossf/criticality_score";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ wamserma ];
|
|
};
|
|
}
|