depot/third_party/nixpkgs/pkgs/development/python-modules/gitdb/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

57 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
, setuptools
, smmap
}:
buildPythonPackage rec {
pname = "gitdb";
version = "4.0.11";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-v1QhEmE21tCvVbwefBrxw5ejT1t71553bNPol4XCsEs=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
smmap
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"gitdb"
];
disabledTests = [
# Tests need part which are not shipped with PyPI releases
"test_base"
"test_reading"
"test_writing"
"test_correctness"
"test_loose_correctness"
"test_pack_random_access"
"test_pack_writing"
"test_stream_reading"
];
meta = with lib; {
description = "Git Object Database";
homepage = "https://github.com/gitpython-developers/gitdb";
changelog = "https://github.com/gitpython-developers/gitdb/releases/tag/${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}