34 lines
731 B
Nix
34 lines
731 B
Nix
{ buildPythonPackage
|
|
, fetchFromGitHub
|
|
, isPy27
|
|
, lib
|
|
, pytestCheckHook
|
|
, tokenize-rt
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyupgrade";
|
|
version = "2.12.0";
|
|
disabled = isPy27;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "asottile";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-pAZszyv7jXEwtQYzEk5Zq2ULP0K2vX0y6IvR6wYsJ9c=";
|
|
};
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
propagatedBuildInputs = [ tokenize-rt ];
|
|
|
|
pythonImportsCheck = [ "pyupgrade" ];
|
|
|
|
meta = with lib; {
|
|
description = "Tool to automatically upgrade syntax for newer versions of the language";
|
|
homepage = "https://github.com/asottile/pyupgrade";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ lovesegfault ];
|
|
};
|
|
}
|