mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
python312Packages.gto: 1.7.1 -> 1.7.2
Diff: https://github.com/iterative/gto/compare/refs/tags/1.7.1...1.7.2 Changelog: https://github.com/iterative/gto/releases/tag/1.7.2
This commit is contained in:
parent
3b6172a234
commit
8cc108b78d
1 changed files with 8 additions and 14 deletions
|
@ -8,6 +8,7 @@
|
||||||
funcy,
|
funcy,
|
||||||
git,
|
git,
|
||||||
pydantic,
|
pydantic,
|
||||||
|
pytest-cov-stub,
|
||||||
pytest-mock,
|
pytest-mock,
|
||||||
pytest-test-utils,
|
pytest-test-utils,
|
||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
|
@ -16,40 +17,32 @@
|
||||||
ruamel-yaml,
|
ruamel-yaml,
|
||||||
scmrepo,
|
scmrepo,
|
||||||
semver,
|
semver,
|
||||||
setuptools,
|
|
||||||
setuptools-scm,
|
setuptools-scm,
|
||||||
|
setuptools,
|
||||||
tabulate,
|
tabulate,
|
||||||
typer,
|
typer,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "gto";
|
pname = "gto";
|
||||||
version = "1.7.1";
|
version = "1.7.2";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.9";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "iterative";
|
owner = "iterative";
|
||||||
repo = "gto";
|
repo = "gto";
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-fUi+/PW05EvgTnoEv1Im1BjZ07VzpZhyW0EjhLUqJGI=";
|
hash = "sha256-8ht22RqiGWqDoBrZnX5p3KKOLVPRm1a54962qKlTK4Q=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
build-system = [
|
||||||
substituteInPlace pyproject.toml \
|
|
||||||
--replace-fail ', "setuptools_scm_git_archive==1.4.1"' ""
|
|
||||||
substituteInPlace setup.cfg \
|
|
||||||
--replace-fail " --cov=gto --cov-report=term-missing --cov-report=xml" ""
|
|
||||||
'';
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
fastentrypoints
|
|
||||||
setuptools
|
setuptools
|
||||||
setuptools-scm
|
setuptools-scm
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
dependencies = [
|
||||||
entrypoints
|
entrypoints
|
||||||
funcy
|
funcy
|
||||||
pydantic
|
pydantic
|
||||||
|
@ -64,6 +57,7 @@ buildPythonPackage rec {
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
freezegun
|
freezegun
|
||||||
git
|
git
|
||||||
|
pytest-cov-stub
|
||||||
pytest-mock
|
pytest-mock
|
||||||
pytest-test-utils
|
pytest-test-utils
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue