1{ lib
2, buildPythonPackage
3, fetchPypi
4, six
5}:
6
7buildPythonPackage rec {
8 pname = "google-pasta";
9 version = "0.2.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "0vm1r1jlaiagj0l9yf7j6zn9w3733dr2169911c0svgrr3gwiwn9";
14 };
15
16 propagatedBuildInputs = [
17 six
18 ];
19
20 meta = {
21 description = "An AST-based Python refactoring library";
22 homepage = "https://github.com/google/pasta";
23 # Usually the tag message contains a one-line summary of the changes.
24 changelog = "https://github.com/google/pasta/releases/tag/v${version}";
25 license = lib.licenses.asl20;
26 maintainers = with lib.maintainers; [ timokau ];
27 };
28}