diff --git a/pkgs/development/python-modules/beautiful-date/default.nix b/pkgs/development/python-modules/beautiful-date/default.nix new file mode 100644 index 000000000000..5b114655bcbb --- /dev/null +++ b/pkgs/development/python-modules/beautiful-date/default.nix @@ -0,0 +1,39 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, python-dateutil +, pytestCheckHook +, pythonOlder +}: + +buildPythonPackage rec { + pname = "beautiful-date"; + version = "2.2.0"; + format = "setuptools"; + + disable = pythonOlder "3.6"; + + src = fetchFromGitHub { + owner = "kuzmoyev"; + repo = "beautiful-date"; + rev = "v${version}"; + hash = "sha256-5xRmHaAPf1ps75cOINHkHT1aYb5UGLZGl0OHVQaMES0="; + }; + + propagatedBuildInputs = [ + python-dateutil + ]; + + nativeCheckInputs = [ + pytestCheckHook + ]; + + pythonImportsCheck = [ "beautiful_date" ]; + + meta = with lib; { + description = "Simple and beautiful way to create date and datetime objects in Python"; + homepage = "https://github.com/kuzmoyev/beautiful-date"; + license = licenses.mit; + maintainers = with maintainers; [ mbalatsko ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f096bc9503d8..e33c8af09b88 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1336,6 +1336,8 @@ self: super: with self; { beartype = callPackage ../development/python-modules/beartype { }; + beautiful-date = callPackage ../development/python-modules/beautiful-date { }; + beautifulsoup4 = callPackage ../development/python-modules/beautifulsoup4 { inherit (python.pythonForBuild.pkgs) sphinxHook; # hook splicing broken since #194205 };