587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
37 lines
785 B
Nix
37 lines
785 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildPythonPackage
|
|
, nix-update-script
|
|
, spdx
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "spdx-lookup";
|
|
version = "0.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bbqsrc";
|
|
repo = "spdx-lookup-python";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-jtzhqRAj1BWdU8AuR7Gr343mL5alLXhi+SyCkCI5AAU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
spdx
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"spdx_lookup"
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "SPDX license list query tool";
|
|
homepage = "https://github.com/bbqsrc/spdx-lookup-python";
|
|
changelog = "https://github.com/bbqsrc/spdx-lookup-python/releases/tag/v${version}";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = with lib.maintainers; [ jnsgruk ];
|
|
};
|
|
}
|
|
|