95752988a4
Checking runtime dependencies for gitdb-4.0.11-py3-none-any.whl - smmap<6,>=3.0.1 not satisfied by version 6.0.0
63 lines
1.1 KiB
Nix
63 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pythonRelaxDepsHook
|
|
, 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
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
"smmap"
|
|
];
|
|
|
|
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; [ ];
|
|
};
|
|
}
|