nixpkgs/pkgs/development/python-modules/astroid/default.nix
Frederik Rietdijk fef9719a58 python3Packages.astroid: remove setuptools-scm-git-archive
I tested with this additional dependency and accidentally commited it.
2021-07-25 10:06:26 +02:00

55 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, isPyPy
, lazy-object-proxy
, wrapt
, typed-ast
, pytestCheckHook
, setuptools-scm
, pylint
}:
buildPythonPackage rec {
pname = "astroid";
version = "2.5.6"; # Check whether the version is compatible with pylint
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "PyCQA";
repo = pname;
rev = "v${version}";
sha256 = "sha256-/nWXzuWkerUDvFT/tJTZuhfju46MAM0cwosVH9BXoY8=";
};
SETUPTOOLS_SCM_PRETEND_VERSION=version;
nativeBuildInputs = [
setuptools-scm
];
# From astroid/__pkginfo__.py
propagatedBuildInputs = [
lazy-object-proxy
wrapt
] ++ lib.optional (!isPyPy && pythonOlder "3.8") typed-ast;
checkInputs = [
pytestCheckHook
];
passthru.tests = {
inherit pylint;
};
meta = with lib; {
description = "An abstract syntax tree for Python with inference support";
homepage = "https://github.com/PyCQA/astroid";
license = licenses.lgpl21Plus;
platforms = platforms.all;
maintainers = with maintainers; [ ];
};
}