nixpkgs/pkgs/development/python-modules/parse/default.nix

24 lines
561 B
Nix
Raw Normal View History

2017-08-24 02:32:24 +00:00
{ stdenv, fetchPypi, fetchpatch
, buildPythonPackage, python
}:
buildPythonPackage rec {
pname = "parse";
2018-05-28 12:18:30 +00:00
version = "1.8.4";
2017-08-24 02:32:24 +00:00
src = fetchPypi {
inherit pname version;
2018-05-28 12:18:30 +00:00
sha256 = "c3cdf6206f22aeebfa00e5b954fcfea13d1b2dc271c75806b6025b94fb490939";
2017-08-24 02:32:24 +00: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 ];
};
}