24 lines
550 B
Nix
Raw Normal View History

{ stdenv, fetchPypi
2017-08-23 21:32:24 -05:00
, buildPythonPackage, python
}:
buildPythonPackage rec {
pname = "parse";
2019-02-14 08:37:22 +01:00
version = "1.11.1";
2017-08-23 21:32:24 -05:00
src = fetchPypi {
inherit pname version;
2019-02-14 08:37:22 +01:00
sha256 = "870dd675c1ee8951db3e29b81ebe44fd131e3eb8c03a79483a58ea574f3145c2";
2017-08-23 21:32:24 -05:00
};
checkPhase = ''
${python.interpreter} test_parse.py
'';
meta = with stdenv.lib; {
homepage = https://github.com/r1chardj0n3s/parse;
description = "parse() is the opposite of format()";
license = licenses.bsdOriginal;
maintainers = with maintainers; [ alunduil ];
};
}