about summary refs log tree commit diff
path: root/pkgs/development/python-modules/dockerfile-parse
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-12-17 15:20:44 +0100
committerGitHub <noreply@github.com>2022-12-17 15:20:44 +0100
commit80d60e2ee20e7ec912acf84d4ce1dd2a2025d57b (patch)
tree94cbec1573274a4a6e9cc330af2d4eac3205dc76 /pkgs/development/python-modules/dockerfile-parse
parent7af8780d026dbea7fe60ef8c76564e8e60020512 (diff)
python310Packages.dockerfile-parse: add changelog to meta
Diffstat (limited to 'pkgs/development/python-modules/dockerfile-parse')
-rw-r--r--pkgs/development/python-modules/dockerfile-parse/default.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/dockerfile-parse/default.nix b/pkgs/development/python-modules/dockerfile-parse/default.nix
index 891d862d614fb..846e85fed33f1 100644
--- a/pkgs/development/python-modules/dockerfile-parse/default.nix
+++ b/pkgs/development/python-modules/dockerfile-parse/default.nix
@@ -1,7 +1,6 @@
 { lib
 , buildPythonPackage
 , fetchPypi
-, six
 , pytestCheckHook
 , pythonOlder
 }:
@@ -18,10 +17,6 @@ buildPythonPackage rec {
     hash = "sha256-If59UQZC8rYamZ1Fw9l0X5UOEf5rokl1Vbj2N4K3jkU=";
   };
 
-  propagatedBuildInputs = [
-    six
-  ];
-
   checkInputs = [
     pytestCheckHook
   ];
@@ -38,6 +33,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Library for parsing Dockerfile files";
     homepage = "https://github.com/DBuildService/dockerfile-parse";
+    changelog = "https://github.com/containerbuildsystem/dockerfile-parse/releases/tag/${version}";
     license = licenses.bsd3;
     maintainers = with maintainers; [ leenaars ];
   };