mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
python gitpython: add meta
This commit is contained in:
parent
f4fb1682bf
commit
31ebf63e4a
@ -4268,7 +4268,6 @@ let
|
|||||||
GitPython = buildPythonPackage rec {
|
GitPython = buildPythonPackage rec {
|
||||||
version = "1.0.1";
|
version = "1.0.1";
|
||||||
name = "GitPython-${version}";
|
name = "GitPython-${version}";
|
||||||
meta.maintainers = with maintainers; [ mornfall ];
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "https://pypi.python.org/packages/source/G/GitPython/GitPython-${version}.tar.gz";
|
url = "https://pypi.python.org/packages/source/G/GitPython/GitPython-${version}.tar.gz";
|
||||||
@ -4277,6 +4276,13 @@ let
|
|||||||
|
|
||||||
buildInputs = with self; [ nose ];
|
buildInputs = with self; [ nose ];
|
||||||
propagatedBuildInputs = with self; [ gitdb ];
|
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 {
|
googlecl = buildPythonPackage rec {
|
||||||
|
Loading…
Reference in New Issue
Block a user