python310Packages.commonmark: Normalize attribute name

This commit is contained in:
Martin Weinelt 2023-02-19 16:35:34 +00:00
parent 0b0d92d893
commit 225dbad50b
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
9 changed files with 12 additions and 11 deletions

View file

@ -2,7 +2,7 @@
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, CommonMark
, commonmark
, docutils
, sphinx
, isPy3k
@ -20,7 +20,7 @@ buildPythonPackage rec {
};
nativeCheckInputs = [ pytestCheckHook ];
propagatedBuildInputs = [ CommonMark docutils sphinx ];
propagatedBuildInputs = [ commonmark docutils sphinx ];
dontUseSetuptoolsCheck = true;

View file

@ -2,7 +2,7 @@
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, CommonMark
, commonmark
, poetry-core
, pygments
, typing-extensions
@ -31,7 +31,7 @@ buildPythonPackage rec {
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
CommonMark
commonmark
pygments
] ++ lib.optionals (pythonOlder "3.9") [
typing-extensions

View file

@ -4,7 +4,7 @@
, fetchFromGitHub
, sphinx
, markdown
, CommonMark
, commonmark
, recommonmark
, pydash
, pyyaml
@ -27,7 +27,7 @@ buildPythonPackage rec {
sha256 = "0i0hhapmdmh83yx61lxi2h4bsmhnzddamz95844g2ghm132kw5mv";
};
propagatedBuildInputs = [ sphinx markdown CommonMark pydash pyyaml unify yapf recommonmark ];
propagatedBuildInputs = [ sphinx markdown commonmark pydash pyyaml unify yapf recommonmark ];
# Avoids running broken tests in test_markdown.py
checkPhase = ''

View file

@ -18,9 +18,9 @@ python3.pkgs.buildPythonPackage rec {
};
propagatedBuildInputs = with python3.pkgs; [
CommonMark
aiohttp
asyncpg
commonmark
mautrix
paho-mqtt
pillow

View file

@ -48,10 +48,10 @@
propagatedBuildInputs = with python3.pkgs; [
aiohttp
commonmark
yarl
asyncpg
ruamel-yaml
CommonMark
python-magic
protobuf3
mautrix

View file

@ -26,10 +26,10 @@ python3.pkgs.buildPythonPackage rec {
];
propagatedBuildInputs = with python3.pkgs; [
CommonMark
aiohttp
asyncpg
attrs
commonmark
mautrix
phonenumbers
pillow

View file

@ -39,7 +39,7 @@ python.pkgs.buildPythonPackage rec {
propagatedBuildInputs = with python.pkgs; ([
ruamel-yaml
python-magic
CommonMark
commonmark
aiohttp
yarl
mautrix

View file

@ -53,6 +53,7 @@ mapAliases ({
class-registry = phx-class-registry; # added 2021-10-05
codespell = throw "codespell has been promoted to a top-level attribute"; # Added 2022-10-02
ColanderAlchemy = colanderalchemy; # added 2023-02-19
CommonMark = commonmark; # added 2023-02-19
ConfigArgParse = configargparse; # added 2021-03-18
cozy = throw "cozy was removed because it was not actually https://pypi.org/project/Cozy/."; # added 2022-01-14
cryptography_vectors = "cryptography_vectors is no longer exposed in python*Packages because it is used for testing cryptography only."; # Added 2022-03-23

View file

@ -1955,7 +1955,7 @@ self: super: with self; {
commoncode = callPackage ../development/python-modules/commoncode { };
CommonMark = callPackage ../development/python-modules/commonmark { };
commonmark = callPackage ../development/python-modules/commonmark { };
compiledb = callPackage ../development/python-modules/compiledb { };