11 buildPythonPackage rec {
12 pname = "pydateinfer";
14 format = "setuptools";
16 src = fetchFromGitHub {
19 rev = "${version},"; # yes the comma is required, this is correct name of git tag
20 hash = "sha256-0gy7wfT/uMTmpdIF2OPGVeUh+4yqJSI2Ebif0Lf/DLM=";
23 propagatedBuildInputs = [ pytz ];
25 preCheck = "cd dateinfer";
31 pythonImportsCheck = [ "dateinfer" ];
34 description = "Infers date format from examples";
35 homepage = "https://pypi.org/project/pydateinfer/";
36 license = licenses.asl20;
37 maintainers = with maintainers; [ mbalatsko ];