2018-04-06 15:53:24 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
|
|
|
, urllib3, certifi
|
2017-01-13 16:20:20 +01:00
|
|
|
, gevent, geventhttpclient, mock, fastimport
|
|
|
|
, git, glibcLocales }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2018-07-22 12:08:40 +02:00
|
|
|
version = "0.19.5";
|
2017-05-27 11:25:35 +02:00
|
|
|
pname = "dulwich";
|
2017-01-13 16:20:20 +01:00
|
|
|
|
2018-04-06 15:53:24 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-07-22 12:08:40 +02:00
|
|
|
sha256 = "34f99e575fe1f1e89cca92cec1ddd50b4991199cb00609203b28df9eb83ce259";
|
2017-01-13 16:20:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
LC_ALL = "en_US.UTF-8";
|
|
|
|
|
2018-04-06 15:53:24 +02:00
|
|
|
propagatedBuildInputs = [ urllib3 certifi ];
|
|
|
|
|
2017-01-13 16:20:20 +01:00
|
|
|
# Only test dependencies
|
2018-04-06 15:53:24 +02:00
|
|
|
checkInputs = [ git glibcLocales gevent geventhttpclient mock fastimport ];
|
2017-01-13 16:20:20 +01:00
|
|
|
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Simple Python implementation of the Git file formats and protocols";
|
2018-06-27 22:12:57 +02:00
|
|
|
homepage = https://samba.org/~jelmer/dulwich/;
|
2017-01-13 16:20:20 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ koral ];
|
|
|
|
};
|
|
|
|
}
|