summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-09-06 00:51:25 +0200
committerGitHub <noreply@github.com>2022-09-06 00:51:25 +0200
commitfe605cae71cabce6455ca2cfa5412d800d5b4771 (patch)
tree56a835b4b6d27ae56cc28a683f9cf9d56c7205ed
parent0cd62ca607b327a5b033a262ca799dff24105041 (diff)
parenta08f2e2fe63be0fe796f8fd0b3a2a27960f9a814 (diff)
Merge pull request #189459 from SuperSandro2000/little-cleanups
-rw-r--r--pkgs/data/fonts/twitter-color-emoji/default.nix2
-rw-r--r--pkgs/development/python-modules/mypy-boto3-builder/default.nix2
-rw-r--r--pkgs/development/python-modules/ptpython/default.nix2
3 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/data/fonts/twitter-color-emoji/default.nix b/pkgs/data/fonts/twitter-color-emoji/default.nix
index 92c01b427e2d..a01b02bdfaf0 100644
--- a/pkgs/data/fonts/twitter-color-emoji/default.nix
+++ b/pkgs/data/fonts/twitter-color-emoji/default.nix
@@ -25,7 +25,7 @@ let
};
pythonEnv =
- python3.withPackages (p: [ p.fonttools p.nototools ]);
+ python3.withPackages (ps: with ps; [ fonttools nototools ]);
in
stdenv.mkDerivation rec {
diff --git a/pkgs/development/python-modules/mypy-boto3-builder/default.nix b/pkgs/development/python-modules/mypy-boto3-builder/default.nix
index e46d8eab2bce..dc44c361a9ca 100644
--- a/pkgs/development/python-modules/mypy-boto3-builder/default.nix
+++ b/pkgs/development/python-modules/mypy-boto3-builder/default.nix
@@ -58,7 +58,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Type annotations builder for boto3";
- homepage = "https://vemel.github.io/mypy_boto3_builder/";
+ homepage = "https://github.com/youtype/mypy_boto3_builder";
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ fab ];
};
diff --git a/pkgs/development/python-modules/ptpython/default.nix b/pkgs/development/python-modules/ptpython/default.nix
index cfe65a24ece3..458cd14f7128 100644
--- a/pkgs/development/python-modules/ptpython/default.nix
+++ b/pkgs/development/python-modules/ptpython/default.nix
@@ -31,8 +31,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "An advanced Python REPL";
+ homepage = "https://github.com/prompt-toolkit/ptpython";
license = licenses.bsd3;
maintainers = with maintainers; [ mlieberman85 ];
- platforms = platforms.all;
};
}