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

31 lines
798 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
, urllib3, certifi
, gevent, geventhttpclient, mock, fastimport
, git, glibcLocales }:
buildPythonPackage rec {
2019-02-14 07:37:15 +00:00
version = "0.19.11";
pname = "dulwich";
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:15 +00:00
sha256 = "afbe070f6899357e33f63f3f3696e601731fef66c64a489dea1bc9f539f4a725";
};
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";
2018-06-27 20:12:57 +00:00
homepage = https://samba.org/~jelmer/dulwich/;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ koral ];
};
}