mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
5ce2f6c5c9
From the release tag[1]: > Support for python 3.8 features [1] https://github.com/google/pasta/releases/tag/v0.2.0
29 lines
661 B
Nix
29 lines
661 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "google-pasta";
|
|
version = "0.2.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0vm1r1jlaiagj0l9yf7j6zn9w3733dr2169911c0svgrr3gwiwn9";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
six
|
|
];
|
|
|
|
meta = {
|
|
description = "An AST-based Python refactoring library";
|
|
homepage = "https://github.com/google/pasta";
|
|
# Usually the tag message contains a one-line summary of the changes.
|
|
changelog = "https://github.com/google/pasta/releases/tag/v${version}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ timokau ];
|
|
};
|
|
}
|