Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pytimeparse / default.nix
blob257314860d5023689fa4f404d3028f1cb1519efe
1 { lib, fetchPypi, buildPythonPackage, nose }:
3 buildPythonPackage rec {
4     pname = "pytimeparse";
5     version = "1.1.8";
7     src = fetchPypi {
8       inherit pname version;
9       sha256 = "e86136477be924d7e670646a98561957e8ca7308d44841e21f5ddea757556a0a";
10     };
12     nativeCheckInputs = [ nose ];
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     };