mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
Merge pull request #252762 from mbalatsko/init-python-beautiful-date
python3Packages.beautiful-date: init at 2.2.0
This commit is contained in:
commit
dda0b69e60
@ -10889,6 +10889,12 @@
|
||||
githubId = 613740;
|
||||
name = "Martin Baillie";
|
||||
};
|
||||
mbalatsko = {
|
||||
email = "mbalatsko@gmail.com";
|
||||
github = "mbalatsko";
|
||||
githubId = 15967073;
|
||||
name = "Maksym Balatsko";
|
||||
};
|
||||
mbbx6spp = {
|
||||
email = "me@susanpotter.net";
|
||||
github = "mbbx6spp";
|
||||
|
39
pkgs/development/python-modules/beautiful-date/default.nix
Normal file
39
pkgs/development/python-modules/beautiful-date/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
@ -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
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user