2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchPypi
|
2017-08-24 03:32:24 +01:00
|
|
|
, buildPythonPackage, python
|
|
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "parse";
|
2020-09-11 07:07:14 +01:00
|
|
|
version = "1.18.0";
|
2017-08-24 03:32:24 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-09-11 07:07:14 +01:00
|
|
|
sha256 = "91666032d6723dc5905248417ef0dc9e4c51df9526aaeef271eacad6491f06a4";
|
2017-08-24 03:32:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
${python.interpreter} test_parse.py
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with 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 ];
|
|
|
|
};
|
|
|
|
}
|