Files
nixpkgs/pkgs/development/python-modules/dulwich/default.nix
T

29 lines
784 B
Nix
Raw Normal View History

2017-01-13 16:20:20 +01:00
{ stdenv, buildPythonPackage, fetchurl
, gevent, geventhttpclient, mock, fastimport
, git, glibcLocales }:
buildPythonPackage rec {
2017-11-05 13:16:18 +01:00
version = "0.18.5";
2017-05-27 11:25:35 +02:00
pname = "dulwich";
name = "${pname}-${version}";
2017-01-13 16:20:20 +01:00
src = fetchurl {
url = "mirror://pypi/d/dulwich/${name}.tar.gz";
2017-11-05 13:16:18 +01:00
sha256 = "838bac318fd0ed79e0eedb6cfd53b6424dc618fec6b99dc959881b12da7bd6e0";
2017-01-13 16:20:20 +01:00
};
LC_ALL = "en_US.UTF-8";
# Only test dependencies
buildInputs = [ git glibcLocales gevent geventhttpclient mock fastimport ];
doCheck = !stdenv.isDarwin;
meta = with stdenv.lib; {
description = "Simple Python implementation of the Git file formats and protocols";
homepage = http://samba.org/~jelmer/dulwich/;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ koral ];
};
}