about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/criticality-score/default.nix
blob: e1ff8754936461d2cea14e84a713603f00b0ff74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, buildPythonPackage, fetchPypi, pygithub, python-gitlab }:

buildPythonPackage rec {
  pname = "criticality_score";
  version = "1.0.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-5XkVT0blnLG158a01jDfQl1Rx9U1LMsqaMjTdN7Q4QQ=";
  };

  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";
    changelog = "https://github.com/ossf/criticality_score/releases/tag/v${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ wamserma ];
  };
}