nixpkgs/pkgs/development/python-modules/dvc-objects/default.nix
Martin Weinelt 8056f9250c
treewide: remove redundant SETUPTOOLS_SCM_PRETEND_VERSION usage
The setuptools-scm packages gained a setup hook, that sets it to the
derivation version automatically, so setting it to that manually has
become redundant.

This also affects downstream consumers of setuptools-scm, like hatch-vcs
or flit-scm.
2023-12-20 20:16:39 +01:00

66 lines
1.2 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, fsspec
, funcy
, pytest-mock
, pytestCheckHook
, pythonOlder
, reflink
, setuptools-scm
, shortuuid
}:
buildPythonPackage rec {
pname = "dvc-objects";
version = "2.0.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "iterative";
repo = "dvc-objects";
rev = "refs/tags/${version}";
hash = "sha256-nxZN0Q9mRAZJUOoxfE58lXZVOrY0r05iROcuo+nV99A=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --benchmark-skip" ""
'';
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
fsspec
funcy
shortuuid
];
nativeCheckInputs = [
pytest-mock
pytestCheckHook
reflink
];
pythonImportsCheck = [
"dvc_objects"
];
disabledTestPaths = [
# Disable benchmarking
"tests/benchmarks/"
];
meta = with lib; {
description = "Library for DVC objects";
homepage = "https://github.com/iterative/dvc-objects";
changelog = "https://github.com/iterative/dvc-objects/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}