mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 03:25:02 +00:00
python3Packages.redbaron: init at 0.9.2
This commit is contained in:
parent
eca871cbaa
commit
f4a58813fa
27
pkgs/development/python-modules/redbaron/default.nix
Normal file
27
pkgs/development/python-modules/redbaron/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ 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
|
||||
|
||||
checkInputs = [ 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 ];
|
||||
};
|
||||
}
|
|
@ -6004,6 +6004,8 @@ in {
|
|||
|
||||
recommonmark = callPackage ../development/python-modules/recommonmark { };
|
||||
|
||||
redbaron = callPackage ../development/python-modules/redbaron { };
|
||||
|
||||
redis = callPackage ../development/python-modules/redis { };
|
||||
|
||||
rednose = callPackage ../development/python-modules/rednose { };
|
||||
|
|
Loading…
Reference in a new issue