mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-09 13:43:50 +00:00
python311Packages.tokenize-rt: 4.2.1 -> 5.2.0
https://github.com/asottile/tokenize-rt/compare/v4.2.1...v5.2.0
This commit is contained in:
parent
bb2480ab82
commit
e19e4c49b6
@ -2,23 +2,31 @@
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, isPy27
|
||||
, setuptools
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "tokenize-rt";
|
||||
version = "4.2.1";
|
||||
format = "setuptools";
|
||||
version = "5.2.0";
|
||||
pyproject = true;
|
||||
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "asottile";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-YNt4YwkuA3DVq4EjJaIES9V3A6ENa3k6/qVKisjA5Pc=";
|
||||
hash = "sha256-G4Dn6iZLVOovzfEt9eMzp93mTX+bo0tHI5cCbaJLxBQ=";
|
||||
};
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A wrapper around the stdlib `tokenize` which roundtrips";
|
||||
|
Loading…
Reference in New Issue
Block a user