mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
python.pkgs.google-pasta: init at 0.1.7
Used by tensorflow for its tf1 -> tf2 migration.
This commit is contained in:
parent
c393b60179
commit
183d32842f
2 changed files with 28 additions and 0 deletions
26
pkgs/development/python-modules/google-pasta/default.nix
Normal file
26
pkgs/development/python-modules/google-pasta/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, six
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "google-pasta";
|
||||
version = "0.1.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1zmqfvy28i2509277s6sz098kddd16cx21vpxyc8xml1nclcxlbr";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -2099,6 +2099,8 @@ in {
|
|||
|
||||
google-music-utils = callPackage ../development/python-modules/google-music-utils { };
|
||||
|
||||
google-pasta = callPackage ../development/python-modules/google-pasta { };
|
||||
|
||||
gpapi = callPackage ../development/python-modules/gpapi { };
|
||||
gplaycli = callPackage ../development/python-modules/gplaycli { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue