Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / baron / default.nix
blobaf8c1a1d36a6666946dfeb65b21788c8d57e949d
1 { lib, fetchPypi, buildPythonPackage, rply, pytestCheckHook, isPy3k }:
3 buildPythonPackage rec {
4   pname = "baron";
5   version = "0.10.1";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "af822ad44d4eb425c8516df4239ac4fdba9fdb398ef77e4924cd7c9b4045bc2f";
10   };
12   propagatedBuildInputs = [ rply ];
14   nativeCheckInputs = [ pytestCheckHook ];
16   doCheck = isPy3k;
18   meta = with lib; {
19     homepage = "https://github.com/gristlabs/asttokens";
20     description = "Abstraction on top of baron, a FST for python to make writing refactoring code a realistic task";
21     license = licenses.lgpl3Plus;
22     maintainers = with maintainers; [ marius851000 ];
23   };