2019-06-22 12:51:39 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, six
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "google-pasta";
|
2019-11-19 14:35:35 +00:00
|
|
|
version = "0.1.8";
|
2019-06-22 12:51:39 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-11-19 14:35:35 +00:00
|
|
|
sha256 = "713813a9f7d6589e5defdaf21e80e4392eb124662f8bd829acd51a4f8735c0cb";
|
2019-06-22 12:51:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
six
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "An AST-based Python refactoring library";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/google/pasta";
|
2019-06-22 12:51:39 +01:00
|
|
|
license = lib.licenses.asl20;
|
|
|
|
maintainers = with lib.maintainers; [ timokau ];
|
|
|
|
};
|
|
|
|
}
|