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

22 lines
616 B
Nix
Raw Normal View History

2017-05-03 04:16:23 +00:00
{ stdenv, fetchPypi, buildPythonPackage, nose }:
buildPythonPackage rec {
pname = "pytimeparse";
version = "1.1.7";
2017-05-03 04:16:23 +00:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "51b641bcd435e0cb6b9701ed79cf7ee97fa6bf2dbb5d41baa16e5486e5d9b17a";
2017-05-03 04:16:23 +00:00
};
propagatedBuildInputs = [ nose ];
meta = with stdenv.lib; {
description = "A small Python library to parse various kinds of time expressions";
homepage = "https://github.com/wroberts/pytimeparse";
license = licenses.mit;
maintainers = with maintainers; [ vrthra ];
};
}