3
0
Fork 0
forked from mirrors/nixpkgs

python310Packages.cryptoparser: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-06 10:11:50 +01:00
parent 50979ec5d4
commit 2dc09b1084

View file

@ -13,7 +13,7 @@ buildPythonPackage rec {
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-kJg8d1PoGIC0feefbJM8oyXcRyMGdg1wWkQUl/nSNCo="; hash = "sha256-kJg8d1PoGIC0feefbJM8oyXcRyMGdg1wWkQUl/nSNCo=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -23,11 +23,14 @@ buildPythonPackage rec {
python-dateutil python-dateutil
]; ];
pythonImportsCheck = [ "cryptoparser" ]; pythonImportsCheck = [
"cryptoparser"
];
meta = with lib; { meta = with lib; {
description = "Fast and flexible security protocol parser and generator"; description = "Security protocol parser and generator";
homepage = "https://gitlab.com/coroner/cryptoparser"; homepage = "https://gitlab.com/coroner/cryptoparser";
changelog = "https://gitlab.com/coroner/cryptoparser/-/blob/v${version}/CHANGELOG.md";
license = licenses.mpl20; license = licenses.mpl20;
maintainers = with maintainers; [ kranzes ]; maintainers = with maintainers; [ kranzes ];
}; };