2021-02-12 14:42:25 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pythonOlder
|
|
|
|
, isPyPy
|
|
|
|
, lazy-object-proxy
|
|
|
|
, wrapt
|
|
|
|
, typed-ast
|
|
|
|
, pytestCheckHook
|
2017-05-27 11:23:41 +01:00
|
|
|
}:
|
2017-03-03 02:05:54 +00:00
|
|
|
|
2017-05-27 11:23:41 +01:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "astroid";
|
2021-03-24 09:28:08 +00:00
|
|
|
version = "2.5.1";
|
2017-03-03 02:05:54 +00:00
|
|
|
|
2021-02-12 14:42:25 +00:00
|
|
|
disabled = pythonOlder "3.6";
|
2018-07-24 00:08:05 +01:00
|
|
|
|
2017-06-06 10:32:19 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-24 09:28:08 +00:00
|
|
|
sha256 = "cfc35498ee64017be059ceffab0a25bedf7548ab76f2bea691c5565896e7128d";
|
2017-05-27 11:23:41 +01:00
|
|
|
};
|
2017-03-03 02:05:54 +00:00
|
|
|
|
2018-07-24 00:08:05 +01:00
|
|
|
# From astroid/__pkginfo__.py
|
2021-02-12 14:42:25 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
lazy-object-proxy
|
|
|
|
wrapt
|
|
|
|
] ++ lib.optional (!isPyPy && pythonOlder "3.8") typed-ast;
|
2017-03-03 02:05:54 +00:00
|
|
|
|
2021-02-12 14:42:25 +00:00
|
|
|
checkInputs = [
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
2017-03-03 02:05:54 +00:00
|
|
|
|
2017-05-27 11:23:41 +01:00
|
|
|
meta = with lib; {
|
2018-08-30 23:28:38 +01:00
|
|
|
description = "An abstract syntax tree for Python with inference support";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/PyCQA/astroid";
|
2021-02-18 16:29:23 +00:00
|
|
|
license = licenses.lgpl21Plus;
|
2017-05-27 11:23:41 +01:00
|
|
|
platforms = platforms.all;
|
2021-05-14 15:00:41 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-05-27 11:23:41 +01:00
|
|
|
};
|
|
|
|
}
|