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