My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/reparser/default.nix

31 lines
636 B

{ lib
, buildPythonPackage
, isPy27
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "reparser";
version = "1.4.3";
disabled = isPy27;
src = fetchFromGitHub {
owner = "xmikos";
repo = "reparser";
rev = "v${version}";
sha256 = "04v7h52wny0j2qj37501nk33j0s4amm134kagdicx2is49zylzq1";
};
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "reparser" ];
meta = with lib; {
description = "Simple regex-based lexer/parser for inline markup";
homepage = "https://github.com/xmikos/reparser";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}