ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pytimeparse / default.nix
blob3bf0ad078c5985faecf88de186a2124fa35ee1e0
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     checkInputs = [ 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     };