Loading pkgs/development/python-modules/pydateinfer/default.nix 0 → 100644 +40 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchFromGitHub , unittestCheckHook , pytz , pyyaml , argparse }: buildPythonPackage rec { pname = "pydateinfer"; version = "0.3.0"; format = "setuptools"; src = fetchFromGitHub { owner = "wdm0006"; repo = "dateinfer"; rev = "${version},"; # yes the comma is required, this is correct name of git tag hash = "sha256-0gy7wfT/uMTmpdIF2OPGVeUh+4yqJSI2Ebif0Lf/DLM="; }; propagatedBuildInputs = [ pytz ]; preCheck = "cd dateinfer"; nativeCheckInputs = [ unittestCheckHook pyyaml argparse ]; pythonImportsCheck = [ "dateinfer" ]; meta = with lib; { description = "Infers date format from examples"; homepage = "https://pypi.org/project/pydateinfer/"; license = licenses.asl20; maintainers = with maintainers; [ mbalatsko ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -9053,6 +9053,8 @@ self: super: with self; { pydata-sphinx-theme = callPackage ../development/python-modules/pydata-sphinx-theme { }; pydateinfer = callPackage ../development/python-modules/pydateinfer { }; pydbus = callPackage ../development/python-modules/pydbus { }; pydeck = callPackage ../development/python-modules/pydeck { }; Loading Loading
pkgs/development/python-modules/pydateinfer/default.nix 0 → 100644 +40 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchFromGitHub , unittestCheckHook , pytz , pyyaml , argparse }: buildPythonPackage rec { pname = "pydateinfer"; version = "0.3.0"; format = "setuptools"; src = fetchFromGitHub { owner = "wdm0006"; repo = "dateinfer"; rev = "${version},"; # yes the comma is required, this is correct name of git tag hash = "sha256-0gy7wfT/uMTmpdIF2OPGVeUh+4yqJSI2Ebif0Lf/DLM="; }; propagatedBuildInputs = [ pytz ]; preCheck = "cd dateinfer"; nativeCheckInputs = [ unittestCheckHook pyyaml argparse ]; pythonImportsCheck = [ "dateinfer" ]; meta = with lib; { description = "Infers date format from examples"; homepage = "https://pypi.org/project/pydateinfer/"; license = licenses.asl20; maintainers = with maintainers; [ mbalatsko ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -9053,6 +9053,8 @@ self: super: with self; { pydata-sphinx-theme = callPackage ../development/python-modules/pydata-sphinx-theme { }; pydateinfer = callPackage ../development/python-modules/pydateinfer { }; pydbus = callPackage ../development/python-modules/pydbus { }; pydeck = callPackage ../development/python-modules/pydeck { }; Loading