mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 08:33:54 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
26 lines
690 B
Nix
26 lines
690 B
Nix
{ lib, fetchPypi, buildPythonPackage, rply, pytestCheckHook, isPy3k }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "baron";
|
|
version = "0.10.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "af822ad44d4eb425c8516df4239ac4fdba9fdb398ef77e4924cd7c9b4045bc2f";
|
|
};
|
|
|
|
propagatedBuildInputs = [ rply ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
doCheck = isPy3k;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/gristlabs/asttokens";
|
|
description = "Abstraction on top of baron, a FST for python to make writing refactoring code a realistic task";
|
|
license = licenses.lgpl3Plus;
|
|
maintainers = with maintainers; [ marius851000 ];
|
|
};
|
|
}
|