python310Packages.pygithub: Normalize attribute, pname, dirname
This commit is contained in:
parent
0deebc3b24
commit
574ec98796
@ -129,7 +129,7 @@
|
|||||||
imports = [ "airflow.providers.ftp.hooks.ftp" ];
|
imports = [ "airflow.providers.ftp.hooks.ftp" ];
|
||||||
};
|
};
|
||||||
github = {
|
github = {
|
||||||
deps = [ "PyGithub" ];
|
deps = [ "pygithub" ];
|
||||||
imports = [ "airflow.providers.github.hooks.github" "airflow.providers.github.operators.github" ];
|
imports = [ "airflow.providers.github.hooks.github" "airflow.providers.github.operators.github" ];
|
||||||
};
|
};
|
||||||
google = {
|
google = {
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, pycryptodome
|
, pycryptodome
|
||||||
, PyGithub
|
, pygithub
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi, PyGithub, python-gitlab }:
|
{ lib, buildPythonPackage, fetchPypi, pygithub, python-gitlab }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "criticality_score";
|
pname = "criticality_score";
|
||||||
@ -9,7 +9,7 @@ buildPythonPackage rec {
|
|||||||
sha256 = "0i811a27i87z3j1rw0dwrnw8v0ckbd918ms6shjawhs4cnb1c6x8";
|
sha256 = "0i811a27i87z3j1rw0dwrnw8v0ckbd918ms6shjawhs4cnb1c6x8";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ PyGithub python-gitlab ];
|
propagatedBuildInputs = [ pygithub python-gitlab ];
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, matplotlib
|
, matplotlib
|
||||||
, PyGithub
|
, pygithub
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -30,7 +30,7 @@ buildPythonPackage rec {
|
|||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
beautifulsoup4
|
beautifulsoup4
|
||||||
matplotlib
|
matplotlib
|
||||||
PyGithub
|
pygithub
|
||||||
];
|
];
|
||||||
|
|
||||||
# Module has no tests
|
# Module has no tests
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, PyGithub
|
, pygithub
|
||||||
, terminaltables
|
, terminaltables
|
||||||
, click
|
, click
|
||||||
, requests
|
, requests
|
||||||
@ -20,7 +20,7 @@ buildPythonPackage rec {
|
|||||||
click
|
click
|
||||||
requests
|
requests
|
||||||
terminaltables
|
terminaltables
|
||||||
PyGithub
|
pygithub
|
||||||
];
|
];
|
||||||
|
|
||||||
# no tests
|
# no tests
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
, gitpython
|
, gitpython
|
||||||
, networkx
|
, networkx
|
||||||
, pydot
|
, pydot
|
||||||
, PyGithub
|
, pygithub
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, pyyaml
|
, pyyaml
|
||||||
, toml
|
, toml
|
||||||
@ -31,7 +31,7 @@ buildPythonPackage rec {
|
|||||||
gitpython
|
gitpython
|
||||||
networkx
|
networkx
|
||||||
pydot
|
pydot
|
||||||
PyGithub
|
pygithub
|
||||||
pyyaml
|
pyyaml
|
||||||
toml
|
toml
|
||||||
tqdm
|
tqdm
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
, nbclient
|
, nbclient
|
||||||
, nbformat
|
, nbformat
|
||||||
, pyarrow
|
, pyarrow
|
||||||
, PyGithub
|
, pygithub
|
||||||
, pytest-mock
|
, pytest-mock
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
@ -54,7 +54,7 @@ buildPythonPackage rec {
|
|||||||
gcsfs
|
gcsfs
|
||||||
];
|
];
|
||||||
github = [
|
github = [
|
||||||
PyGithub
|
pygithub
|
||||||
];
|
];
|
||||||
hdfs = [
|
hdfs = [
|
||||||
pyarrow
|
pyarrow
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "PyGithub";
|
pname = "pygithub";
|
||||||
version = "1.57";
|
version = "1.57";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
@ -1,4 +1,4 @@
|
|||||||
{ lib, fetchFromGitHub, buildPythonApplication, pyxdg, PyGithub }:
|
{ lib, fetchFromGitHub, buildPythonApplication, pyxdg, pygithub }:
|
||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "cligh";
|
pname = "cligh";
|
||||||
@ -13,7 +13,7 @@ buildPythonApplication rec {
|
|||||||
sha256 = "0d1fd78rzl2n75xpmy1gnxh1shvcs4qm0j4qqszqvfriwkg2flxn";
|
sha256 = "0d1fd78rzl2n75xpmy1gnxh1shvcs4qm0j4qqszqvfriwkg2flxn";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ pyxdg PyGithub ];
|
propagatedBuildInputs = [ pyxdg pygithub ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "http://the-brannons.com/software/cligh.html";
|
homepage = "http://the-brannons.com/software/cligh.html";
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#! /usr/bin/env nix-shell
|
#! /usr/bin/env nix-shell
|
||||||
#! nix-shell -i python -p "python3.withPackages (ps: [ps.PyGithub])" git gnupg
|
#! nix-shell -i python -p "python3.withPackages (ps: [ps.pygithub])" git gnupg
|
||||||
|
|
||||||
# This is automatically called by ../update.sh.
|
# This is automatically called by ../update.sh.
|
||||||
|
|
||||||
|
@ -137,7 +137,7 @@ py.pkgs.toPythonApplication (py.pkgs.buildAzureCliPackage {
|
|||||||
mock
|
mock
|
||||||
paramiko
|
paramiko
|
||||||
pydocumentdb
|
pydocumentdb
|
||||||
PyGithub
|
pygithub
|
||||||
pygments
|
pygments
|
||||||
pynacl
|
pynacl
|
||||||
pyopenssl
|
pyopenssl
|
||||||
|
@ -171,6 +171,7 @@ mapAliases ({
|
|||||||
Pweave = pweave; # added 2023-02-19
|
Pweave = pweave; # added 2023-02-19
|
||||||
pyalmond = throw "pyalmond has been removed, since its API endpoints have been shutdown"; # added 2023-02-02
|
pyalmond = throw "pyalmond has been removed, since its API endpoints have been shutdown"; # added 2023-02-02
|
||||||
pydrive = throw "pydrive is broken and deprecated and has been replaced with pydrive2."; # added 2022-06-01
|
pydrive = throw "pydrive is broken and deprecated and has been replaced with pydrive2."; # added 2022-06-01
|
||||||
|
PyGithub = pygithub; # added 2023-02-19
|
||||||
pyGtkGlade = throw "Glade support for pygtk has been removed"; # added 2022-01-15
|
pyGtkGlade = throw "Glade support for pygtk has been removed"; # added 2022-01-15
|
||||||
pycallgraph = throw "pycallgraph has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
|
pycallgraph = throw "pycallgraph has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
|
||||||
pychef = throw "pychef has been removed because it's been archived upstream and abandoned since 2017."; # added 2022-11-14
|
pychef = throw "pychef has been removed because it's been archived upstream and abandoned since 2017."; # added 2022-11-14
|
||||||
|
@ -8130,7 +8130,7 @@ self: super: with self; {
|
|||||||
|
|
||||||
pygit2 = callPackage ../development/python-modules/pygit2 { };
|
pygit2 = callPackage ../development/python-modules/pygit2 { };
|
||||||
|
|
||||||
PyGithub = callPackage ../development/python-modules/pyGithub { };
|
pygithub = callPackage ../development/python-modules/pygithub { };
|
||||||
|
|
||||||
pyglet = callPackage ../development/python-modules/pyglet { };
|
pyglet = callPackage ../development/python-modules/pyglet { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user