mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 10:43:27 +00:00
26 lines
484 B
Nix
26 lines
484 B
Nix
{ 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;
|
|
};
|
|
}
|