at 22.05-pre 644 B view raw
1{ lib, fetchPypi, buildPythonPackage, rply, pytestCheckHook, isPy3k }: 2 3buildPythonPackage rec { 4 pname = "baron"; 5 version = "0.9"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0fib74nkqnl1i2zzlhbbfpw3whwc4951p9x61r2xrxhwp4r9yn5h"; 10 }; 11 12 propagatedBuildInputs = [ rply ]; 13 14 checkInputs = [ pytestCheckHook ]; 15 16 doCheck = isPy3k; 17 18 meta = with lib; { 19 homepage = "https://github.com/gristlabs/asttokens"; 20 description = "Abstraction on top of baron, a FST for python to make writing refactoring code a realistic task"; 21 license = licenses.lgpl3Plus; 22 maintainers = with maintainers; [ marius851000 ]; 23 }; 24}