1{ lib, fetchPypi, buildPythonPackage, nose }:
2
3buildPythonPackage rec {
4 pname = "pytimeparse";
5 version = "1.1.8";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "e86136477be924d7e670646a98561957e8ca7308d44841e21f5ddea757556a0a";
10 };
11
12 nativeCheckInputs = [ nose ];
13
14 meta = with lib; {
15 description = "A small Python library to parse various kinds of time expressions";
16 homepage = "https://github.com/wroberts/pytimeparse";
17 license = licenses.mit;
18 maintainers = with maintainers; [ vrthra ];
19 };
20}