My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/poetry-core/default.nix

67 lines
1.5 KiB

{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder, isPy27
, git
, importlib-metadata
, intreehooks
, pathlib2
, pep517
, pytest-mock
, pytestCheckHook
, tomlkit
, typing ? null
, virtualenv
}:
buildPythonPackage rec {
pname = "poetry-core";
version = "1.0.8";
format = "pyproject";
src = fetchFromGitHub {
owner = "python-poetry";
repo = pname;
rev = version;
sha256 = "sha256-cs9SMGD9RdW8Wx/IAMq6gkOUBsney5r19hyGva98grk=";
};
postPatch = lib.optionalString (pythonOlder "3.8") ''
# remove >1.0.3
substituteInPlace pyproject.toml \
--replace 'importlib-metadata = {version = "^1.7.0", python = "~2.7 || >=3.5, <3.8"}' \
'importlib-metadata = {version = ">=1.7.0", python = "~2.7 || >=3.5, <3.8"}'
'';
nativeBuildInputs = [
intreehooks
];
propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [
importlib-metadata
] ++ lib.optionals isPy27 [
pathlib2
typing
];
checkInputs = [
git
pep517
pytest-mock
pytestCheckHook
tomlkit
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" ];
meta = with lib; {
description = "Core utilities for Poetry";
homepage = "https://github.com/python-poetry/poetry-core/";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}