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