2018-07-20 17:44:44 -07:00
|
|
|
{ stdenv, fetchPypi
|
2017-08-23 19:32:24 -07:00
|
|
|
, buildPythonPackage, python
|
|
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "parse";
|
2020-08-16 10:31:09 -07:00
|
|
|
version = "1.16.0";
|
2017-08-23 19:32:24 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 10:31:09 -07:00
|
|
|
sha256 = "cd89e57aed38dcf3e0ff8253f53121a3b23e6181758993323658bffc048a5c19";
|
2017-08-23 19:32:24 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
${python.interpreter} test_parse.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/r1chardj0n3s/parse";
|
2017-08-23 19:32:24 -07:00
|
|
|
description = "parse() is the opposite of format()";
|
|
|
|
license = licenses.bsdOriginal;
|
|
|
|
maintainers = with maintainers; [ alunduil ];
|
|
|
|
};
|
|
|
|
}
|