Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / beniget / default.nix
blob51f641c51eb484e3a9f6a63b806940329cdda59d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , gast
5 }:
7 buildPythonPackage rec {
8   pname = "beniget";
9   version = "0.4.1";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "75554b3b8ad0553ce2f607627dad3d95c60c441189875b98e097528f8e23ac0c";
14   };
16   propagatedBuildInputs = [
17     gast
18   ];
20   meta = {
21     description = "Extract semantic information about static Python code";
22     homepage = "https://github.com/serge-sans-paille/beniget";
23     license = lib.licenses.bsd3;
24   };