1{ lib
2, buildPythonPackage
3, fetchPypi
4, six
5}:
6
7buildPythonPackage rec {
8 pname = "google-pasta";
9 version = "0.1.7";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "1zmqfvy28i2509277s6sz098kddd16cx21vpxyc8xml1nclcxlbr";
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 license = lib.licenses.asl20;
24 maintainers = with lib.maintainers; [ timokau ];
25 };
26}