nixpkgs/pkgs/development/python-modules/beniget/default.nix
2021-03-13 11:33:01 +01:00

26 lines
484 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, gast
}:
buildPythonPackage rec {
pname = "beniget";
version = "0.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "062c893be9cdf87c3144fb15041cce4d81c67107c1591952cd45fdce789a0ff1";
};
propagatedBuildInputs = [
gast
];
meta = {
description = "Extract semantic information about static Python code";
homepage = "https://github.com/serge-sans-paille/beniget";
license = lib.licenses.bsd3;
};
}