nixpkgs/pkgs/development/python-modules/arpeggio/default.nix

35 lines
663 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, glibcLocales
2019-10-17 09:24:37 +02:00
, pytestrunner
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "Arpeggio";
2019-10-16 11:43:02 +02:00
version = "1.9.2";
src = fetchPypi {
inherit pname version;
2019-10-16 11:43:02 +02:00
sha256 = "948ce06163a48a72c97f4fe79ad3d1c1330b6fec4f22ece182fb60ef60bd022b";
};
# Shall not be needed for next release
LC_ALL = "en_US.UTF-8";
buildInputs = [ glibcLocales ];
2019-10-17 09:24:37 +02:00
nativeBuildInputs = [ pytestrunner ];
checkInputs = [ pytestCheckHook ];
disabledTests = [ "test_examples" "test_issue_22" ];
dontUseSetuptoolsCheck = true;
meta = {
description = "Packrat parser interpreter";
license = lib.licenses.mit;
};
}