summary refs log tree commit diff
path: root/pkgs/development/python-modules/beniget/default.nix
blob: f8733eeed6264943f07701824d1446e2c4ca0f6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, buildPythonPackage
, fetchPypi
, gast
}:

buildPythonPackage rec {
  pname = "beniget";
  version = "0.4.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "72bbd47b1ae93690f5fb2ad3902ce1ae61dcd868ce6cfbf33e9bad71f9ed8749";
  };

  propagatedBuildInputs = [
    gast
  ];

  meta = {
    description = "Extract semantic information about static Python code";
    homepage = "https://github.com/serge-sans-paille/beniget";
    license = lib.licenses.bsd3;
  };
}