3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/baron/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
659 B
Nix
Raw Normal View History

2020-10-17 00:10:52 +01:00
{ lib, fetchPypi, buildPythonPackage, rply, pytestCheckHook, isPy3k }:
buildPythonPackage rec {
pname = "baron";
2021-12-09 21:37:09 +00:00
version = "0.10.1";
2020-10-17 00:10:52 +01:00
src = fetchPypi {
inherit pname version;
2021-12-09 21:37:09 +00:00
sha256 = "af822ad44d4eb425c8516df4239ac4fdba9fdb398ef77e4924cd7c9b4045bc2f";
2020-10-17 00:10:52 +01:00
};
propagatedBuildInputs = [ rply ];
checkInputs = [ 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 ];
};
}