From 31ebf63e4a75f01a807614941b22d21ecbc70f55 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 25 Nov 2015 10:31:38 +0100 Subject: [PATCH] python gitpython: add meta --- pkgs/top-level/python-packages.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cfbe1f52bce..ef3424344b5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4268,7 +4268,6 @@ let GitPython = buildPythonPackage rec { version = "1.0.1"; name = "GitPython-${version}"; - meta.maintainers = with maintainers; [ mornfall ]; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/G/GitPython/GitPython-${version}.tar.gz"; @@ -4277,6 +4276,13 @@ let buildInputs = with self; [ nose ]; propagatedBuildInputs = with self; [ gitdb ]; + + meta = { + description = "Python Git Library"; + maintainers = with maintainers; [ mornfall ]; + homepage = https://github.com/gitpython-developers/GitPython; + license = licenses.bsd3; + }; }; googlecl = buildPythonPackage rec {