nixpkgs/pkgs/development/python-modules/gitdb/default.nix
Martin Weinelt 95752988a4
python311Packages.gitdb: relax smmap constraint
Checking runtime dependencies for gitdb-4.0.11-py3-none-any.whl
  - smmap<6,>=3.0.1 not satisfied by version 6.0.0
2023-12-20 20:45:48 +01:00

64 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; [ ];
};
}