about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/google-pasta/default.nix
blob: fc4fb5a46d868fb8802d1f8d961e4addade202a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib
, buildPythonPackage
, fetchPypi
, six
}:

buildPythonPackage rec {
  pname = "google-pasta";
  version = "0.1.8";

  src = fetchPypi {
    inherit pname version;
    sha256 = "713813a9f7d6589e5defdaf21e80e4392eb124662f8bd829acd51a4f8735c0cb";
  };

  propagatedBuildInputs = [
    six
  ];

  meta = {
    description = "An AST-based Python refactoring library";
    homepage    = https://github.com/google/pasta;
    license     = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ timokau ];
  };
}