Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / redbaron / default.nix
blob52a3ac5b265e9894de8a0e89284f7e353c1d0725
1 { lib, fetchPypi, buildPythonPackage, baron, pytestCheckHook }:
3 buildPythonPackage rec {
4   pname = "redbaron";
5   version = "0.9.2";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "0bqkq0wn20cc3qrcd1ifq74p4m570j345bkq4axl08kbr8whfba7";
11   };
13   propagatedBuildInputs = [ baron ];
15   preCheck = ''
16     rm -rf tests/__pycache__
17     rm tests/test_bounding_box.py
18   ''; #error about fixtures
20   nativeCheckInputs = [ pytestCheckHook ];
22   meta = with lib; {
23     homepage = "https://github.com/gristlabs/asttokens";
24     description = "Abstraction on top of baron, a FST for python to make writing refactoring code a realistic task";
25     license = licenses.lgpl3Plus;
26     maintainers = with maintainers; [ marius851000 ];
27   };