depot/third_party/nixpkgs/pkgs/development/python-modules/dulwich/default.nix
Default email 3a4df29a92 Project import generated by Copybara.
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
2022-06-16 19:23:12 +02:00

67 lines
1.2 KiB
Nix

{ lib
, stdenv
, buildPythonPackage
, certifi
, fastimport
, fetchPypi
, gevent
, geventhttpclient
, git
, glibcLocales
, gpgme
, mock
, pkgs
, urllib3
, paramiko
, pythonOlder
}:
buildPythonPackage rec {
version = "0.20.43";
pname = "dulwich";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-/MIWTgE7OQqe46EJ1+97ldjeKDsueJuwfpSqMRXjKeo=";
};
LC_ALL = "en_US.UTF-8";
propagatedBuildInputs = [
certifi
urllib3
];
checkInputs = [
fastimport
gevent
geventhttpclient
git
glibcLocales
gpgme
pkgs.gnupg
mock
paramiko
];
doCheck = !stdenv.isDarwin;
pythonImportsCheck = [
"dulwich"
];
meta = with lib; {
description = "Simple Python implementation of the Git file formats and protocols";
longDescription = ''
Dulwich is a Python implementation of the Git file formats and protocols, which
does not depend on Git itself. All functionality is available in pure Python.
'';
homepage = "https://www.dulwich.io/";
changelog = "https://github.com/dulwich/dulwich/blob/dulwich-${version}/NEWS";
license = with licenses; [ asl20 gpl2Plus ];
maintainers = with maintainers; [ koral ];
};
}