2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
gast,
|
2021-03-15 08:37:03 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "beniget";
|
2021-09-18 10:52:07 +00:00
|
|
|
version = "0.4.1";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2021-03-15 08:37:03 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-09-18 10:52:07 +00:00
|
|
|
sha256 = "75554b3b8ad0553ce2f607627dad3d95c60c441189875b98e097528f8e23ac0c";
|
2021-03-15 08:37:03 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
propagatedBuildInputs = [ gast ];
|
2021-03-15 08:37:03 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Extract semantic information about static Python code";
|
|
|
|
homepage = "https://github.com/serge-sans-paille/beniget";
|
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|