mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
26 lines
518 B
Nix
26 lines
518 B
Nix
{ 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 stdenv.lib; {
|
|
description = "Setuptools revision control system plugin for Git";
|
|
homepage = "https://pypi.python.org/pypi/setuptools-git";
|
|
license = licenses.bsd3;
|
|
};
|
|
|
|
}
|