Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / baron / default.nix
blobd02a434248fb95d1d553d54a51716b2baa470c15
1 { lib, fetchPypi, buildPythonPackage, rply, pytestCheckHook, isPy3k }:
3 buildPythonPackage rec {
4   pname = "baron";
5   version = "0.10.1";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "af822ad44d4eb425c8516df4239ac4fdba9fdb398ef77e4924cd7c9b4045bc2f";
11   };
13   propagatedBuildInputs = [ rply ];
15   nativeCheckInputs = [ pytestCheckHook ];
17   doCheck = isPy3k;
19   meta = with lib; {
20     homepage = "https://github.com/gristlabs/asttokens";
21     description = "Abstraction on top of baron, a FST for python to make writing refactoring code a realistic task";
22     license = licenses.lgpl3Plus;
23     maintainers = with maintainers; [ marius851000 ];
24   };