linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / google-pasta / default.nix
blob608ab9ccd1bc69b425a0b0902cae5822a7991a02
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , six
5 }:
7 buildPythonPackage rec {
8   pname = "google-pasta";
9   version = "0.2.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "0vm1r1jlaiagj0l9yf7j6zn9w3733dr2169911c0svgrr3gwiwn9";
14   };
16   propagatedBuildInputs = [
17     six
18   ];
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   };