mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
28 lines
736 B
Nix
28 lines
736 B
Nix
{ lib, fetchPypi, buildPythonPackage, baron, pytestCheckHook }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "redbaron";
|
|
version = "0.9.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0bqkq0wn20cc3qrcd1ifq74p4m570j345bkq4axl08kbr8whfba7";
|
|
};
|
|
|
|
propagatedBuildInputs = [ baron ];
|
|
|
|
preCheck = ''
|
|
rm -rf tests/__pycache__
|
|
rm tests/test_bounding_box.py
|
|
''; #error about fixtures
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
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 ];
|
|
};
|
|
}
|