summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-01-28 12:23:51 +0000
committerGitHub <noreply@github.com>2021-01-28 12:23:51 +0000
commit2e6c34fd11a81b4e3ef73df28a1b4b605a51e776 (patch)
treed5b702bb4a16ec61c680fd49321596d0fe001506 /pkgs/development/python-modules
parent99c044f4e2090627c38b4a5ff0b266b18200db2d (diff)
parentb43756e22b3128f9415fdcd954a5b1e3b865680a (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/google-cloud-iam/default.nix4
-rw-r--r--pkgs/development/python-modules/pytest-order/default.nix35
2 files changed, 37 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/google-cloud-iam/default.nix b/pkgs/development/python-modules/google-cloud-iam/default.nix
index f96940f4e67f..243c2b86c1ee 100644
--- a/pkgs/development/python-modules/google-cloud-iam/default.nix
+++ b/pkgs/development/python-modules/google-cloud-iam/default.nix
@@ -12,11 +12,11 @@
buildPythonPackage rec {
pname = "google-cloud-iam";
- version = "2.0.0";
+ version = "2.1.0";
src = fetchPypi {
inherit pname version;
- sha256 = "1zxsx5avs8njiyw32zvsx2yblmmiwxy771x334hbgmy0aqms4lak";
+ sha256 = "d34604508e3e87b9161ccd5ff29474867ac91ffb8d29e1a2fc9ff0e26d934b73";
};
propagatedBuildInputs = [ google-api-core libcst proto-plus ];
diff --git a/pkgs/development/python-modules/pytest-order/default.nix b/pkgs/development/python-modules/pytest-order/default.nix
new file mode 100644
index 000000000000..b07be1178c63
--- /dev/null
+++ b/pkgs/development/python-modules/pytest-order/default.nix
@@ -0,0 +1,35 @@
+{ buildPythonPackage
+, fetchPypi
+, lib
+, pytest
+, pytest-xdist
+, pytest-dependency
+, pytest-mock
+, pytestCheckHook
+}:
+
+buildPythonPackage rec {
+ pname = "pytest-order";
+ version = "0.9.4";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0b7i8z6rywnkb3skyg8bnfqgkjrwvkn64b4q07wfl1q7x65ksd26";
+ };
+
+ propagatedBuildInputs = [ pytest ];
+
+ checkInputs = [
+ pytestCheckHook
+ pytest-xdist
+ pytest-dependency
+ pytest-mock
+ ];
+
+ meta = {
+ description = "Pytest plugin that allows you to customize the order in which your tests are run";
+ homepage = "https://github.com/mrbean-bremen/pytest-order";
+ license = lib.licenses.mit;
+ maintainers = [ lib.maintainers.jacg ];
+ };
+}