about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/setuptools-git/default.nix
blob: 18fae7b1610bb2f63a117bee5e3f65aae43a47ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, pkgs
}:

buildPythonPackage rec {
  pname = "setuptools-git";
  version = "1.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "ff64136da01aabba76ae88b050e7197918d8b2139ccbf6144e14d472b9c40445";
  };

  propagatedBuildInputs = [ pkgs.git ];
  doCheck = false;

  meta = with lib; {
    description = "Setuptools revision control system plugin for Git";
    homepage = "https://pypi.python.org/pypi/setuptools-git";
    license = licenses.bsd3;
  };

}