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