10 buildPythonPackage rec {
11 pname = "tokenize-rt";
17 src = fetchFromGitHub {
21 hash = "sha256-G4Dn6iZLVOovzfEt9eMzp93mTX+bo0tHI5cCbaJLxBQ=";
24 nativeBuildInputs = [ setuptools ];
26 nativeCheckInputs = [ pytestCheckHook ];
29 description = "Wrapper around the stdlib `tokenize` which roundtrips";
30 mainProgram = "tokenize-rt";
31 homepage = "https://github.com/asottile/tokenize-rt";
32 license = licenses.mit;
33 maintainers = with maintainers; [ lovesegfault ];