pythonPackages.CommonMark: move expression

This commit is contained in:
Robert Schütz
2018-03-17 15:12:00 +01:00
parent 5693c5da8e
commit b549f18b6c
2 changed files with 30 additions and 27 deletions

View File

@@ -0,0 +1,24 @@
{ lib, buildPythonPackage, fetchPypi, flake8, glibcLocales, future }:
buildPythonPackage rec {
pname = "CommonMark";
version = "0.6.3";
src = fetchPypi {
inherit pname version;
sha256 = "ee5a88f23678794592efe3fc11033f17fc77b3296a85f5e1d5b715f8e110a773";
};
LC_ALL="en_US.UTF-8";
doCheck = false;
buildInputs = [ flake8 glibcLocales ];
propagatedBuildInputs = [ future ];
meta = with lib; {
description = "Python parser for the CommonMark Markdown spec";
homepage = https://github.com/rolandshoemaker/CommonMark-py;
license = licenses.bsd3;
};
}