30 lines
796 B
Nix
30 lines
796 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, urllib3, certifi
|
|
, gevent, geventhttpclient, mock, fastimport
|
|
, git, glibcLocales }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.19.2";
|
|
pname = "dulwich";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "c51e10c260543240e0806052af046e1a78b98cbe1ac1ef3880a78d2269e09da4";
|
|
};
|
|
|
|
LC_ALL = "en_US.UTF-8";
|
|
|
|
propagatedBuildInputs = [ urllib3 certifi ];
|
|
|
|
# Only test dependencies
|
|
checkInputs = [ 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 ];
|
|
};
|
|
}
|