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