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

31 lines
797 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
, urllib3, certifi
, gevent, geventhttpclient, mock, fastimport
, git, glibcLocales }:
buildPythonPackage rec {
2018-11-20 10:58:35 +00:00
version = "0.19.9";
pname = "dulwich";
src = fetchPypi {
inherit pname version;
2018-11-20 10:58:35 +00:00
sha256 = "5e1e39555f594939a8aff1ca08b3bdf6c7efd4b941c2850760983a0197240974";
};
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 21:12:57 +01:00
homepage = https://samba.org/~jelmer/dulwich/;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ koral ];
};
}