about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/beniget/default.nix
blob: 51f641c51eb484e3a9f6a63b806940329cdda59d (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.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "75554b3b8ad0553ce2f607627dad3d95c60c441189875b98e097528f8e23ac0c";
  };

  propagatedBuildInputs = [
    gast
  ];

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