lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.pydateinfer: init at 0.3.0

authored by

Maksym Balatsko and committed by
Yt
ff7daa56 aeaa0a7b

+42
+40
pkgs/development/python-modules/pydateinfer/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , unittestCheckHook 5 + , pytz 6 + , pyyaml 7 + , argparse 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "pydateinfer"; 12 + version = "0.3.0"; 13 + format = "setuptools"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "wdm0006"; 17 + repo = "dateinfer"; 18 + rev = "${version},"; # yes the comma is required, this is correct name of git tag 19 + hash = "sha256-0gy7wfT/uMTmpdIF2OPGVeUh+4yqJSI2Ebif0Lf/DLM="; 20 + }; 21 + 22 + propagatedBuildInputs = [ 23 + pytz 24 + ]; 25 + 26 + preCheck = "cd dateinfer"; 27 + nativeCheckInputs = [ 28 + unittestCheckHook 29 + pyyaml 30 + argparse 31 + ]; 32 + pythonImportsCheck = [ "dateinfer" ]; 33 + 34 + meta = with lib; { 35 + description = "Infers date format from examples"; 36 + homepage = "https://pypi.org/project/pydateinfer/"; 37 + license = licenses.asl20; 38 + maintainers = with maintainers; [ mbalatsko ]; 39 + }; 40 + }
+2
pkgs/top-level/python-packages.nix
··· 9053 9053 9054 9054 pydata-sphinx-theme = callPackage ../development/python-modules/pydata-sphinx-theme { }; 9055 9055 9056 + pydateinfer = callPackage ../development/python-modules/pydateinfer { }; 9057 + 9056 9058 pydbus = callPackage ../development/python-modules/pydbus { }; 9057 9059 9058 9060 pydeck = callPackage ../development/python-modules/pydeck { };