fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
30 lines
694 B
Nix
30 lines
694 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildPythonPackage,
|
|
nix-update-script,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "spdx";
|
|
version = "2.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bbqsrc";
|
|
repo = "spdx-python";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-lfTgAX4Wl01xrvLA12ZUqjah7ZiLafMAU+yNNdVkRk0=";
|
|
};
|
|
|
|
pythonImportsCheck = [ "spdx" ];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "SPDX license list database";
|
|
homepage = "https://github.com/bbqsrc/spdx-python";
|
|
changelog = "https://github.com/bbqsrc/spdx-python/releases/tag/v${version}";
|
|
license = lib.licenses.cc0;
|
|
maintainers = with lib.maintainers; [ jnsgruk ];
|
|
};
|
|
}
|