0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

python310Packages.dockerfile-parse: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-17 15:20:44 +01:00 committed by GitHub
parent 7af8780d02
commit 80d60e2ee2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,6 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, six
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
}: }:
@ -18,10 +17,6 @@ buildPythonPackage rec {
hash = "sha256-If59UQZC8rYamZ1Fw9l0X5UOEf5rokl1Vbj2N4K3jkU="; hash = "sha256-If59UQZC8rYamZ1Fw9l0X5UOEf5rokl1Vbj2N4K3jkU=";
}; };
propagatedBuildInputs = [
six
];
checkInputs = [ checkInputs = [
pytestCheckHook pytestCheckHook
]; ];
@ -38,6 +33,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Library for parsing Dockerfile files"; description = "Library for parsing Dockerfile files";
homepage = "https://github.com/DBuildService/dockerfile-parse"; homepage = "https://github.com/DBuildService/dockerfile-parse";
changelog = "https://github.com/containerbuildsystem/dockerfile-parse/releases/tag/${version}";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ leenaars ]; maintainers = with maintainers; [ leenaars ];
}; };