1e0c66b484
Diff: https://github.com/python-poetry/poetry-core/compare/1.9.0...1.9.1 Changelog: https://github.com/python-poetry/poetry-core/blob/1.9.1/CHANGELOG.md
61 lines
1.2 KiB
Nix
61 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
build,
|
|
git,
|
|
pytest-mock,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
tomli-w,
|
|
virtualenv,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "poetry-core";
|
|
version = "1.9.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "python-poetry";
|
|
repo = "poetry-core";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-L8lR9sUdRYqjkDCQ0XHXZm5X6xD40t1gxlGiovvb/+8=";
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
build
|
|
git
|
|
pytest-mock
|
|
pytestCheckHook
|
|
setuptools
|
|
tomli-w
|
|
virtualenv
|
|
];
|
|
|
|
# Requires git history to work correctly
|
|
disabledTests = [
|
|
"default_with_excluded_data"
|
|
"default_src_with_excluded_data"
|
|
];
|
|
|
|
pythonImportsCheck = [ "poetry.core" ];
|
|
|
|
# Allow for package to use pep420's native namespaces
|
|
pythonNamespaces = [ "poetry" ];
|
|
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-int-conversion";
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/python-poetry/poetry-core/blob/${src.rev}/CHANGELOG.md";
|
|
description = "Core utilities for Poetry";
|
|
homepage = "https://github.com/python-poetry/poetry-core/";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|