Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 484 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, gast 5}: 6 7buildPythonPackage rec { 8 pname = "beniget"; 9 version = "0.4.1"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "75554b3b8ad0553ce2f607627dad3d95c60c441189875b98e097528f8e23ac0c"; 14 }; 15 16 propagatedBuildInputs = [ 17 gast 18 ]; 19 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 }; 25}