summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-01-13 00:25:43 +0100
committerGitHub <noreply@github.com>2022-01-13 00:25:43 +0100
commitaf311ba307d903296dc105205f6080f4b8f3b88c (patch)
tree7a64d0d9cf5557de2a8be05d0c8805f257d5813c
parentMerge pull request #154781 from fabaff/bump-cwltool (diff)
parentpython310Packages.Pyro4: 4.81 -> 4.82 (diff)
downloadnixpkgs-af311ba307d903296dc105205f6080f4b8f3b88c.tar.gz
Merge pull request #154788 from fabaff/fix-billard
python310Packages.case: adjust inputs
-rw-r--r--pkgs/development/python-modules/billiard/default.nix13
-rw-r--r--pkgs/development/python-modules/case/default.nix28
-rw-r--r--pkgs/development/python-modules/pecan/default.nix40
-rw-r--r--pkgs/development/python-modules/pyro4/default.nix25
4 files changed, 69 insertions, 37 deletions
diff --git a/pkgs/development/python-modules/billiard/default.nix b/pkgs/development/python-modules/billiard/default.nix
index 79aca1e4a99f..f02bef97ba34 100644
--- a/pkgs/development/python-modules/billiard/default.nix
+++ b/pkgs/development/python-modules/billiard/default.nix
@@ -1,16 +1,18 @@
{ lib
, buildPythonPackage
, fetchPypi
-, isPyPy
, pytestCheckHook
, case
, psutil
+, pythonOlder
}:
buildPythonPackage rec {
pname = "billiard";
version = "3.6.4.0";
- disabled = isPyPy;
+ format = "setuptools";
+
+ disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
@@ -23,9 +25,14 @@ buildPythonPackage rec {
pytestCheckHook
];
+ pythonImportsCheck = [
+ "billiard"
+ ];
+
meta = with lib; {
- homepage = "https://github.com/celery/billiard";
description = "Python multiprocessing fork with improvements and bugfixes";
+ homepage = "https://github.com/celery/billiard";
license = licenses.bsd3;
+ maintainers = with maintainers; [ ];
};
}
diff --git a/pkgs/development/python-modules/case/default.nix b/pkgs/development/python-modules/case/default.nix
index 3f95d9e22afc..36efc1aab3bc 100644
--- a/pkgs/development/python-modules/case/default.nix
+++ b/pkgs/development/python-modules/case/default.nix
@@ -1,20 +1,40 @@
-{ lib, buildPythonPackage, fetchPypi
-, six, nose, unittest2, mock }:
+{ lib
+, buildPythonPackage
+, fetchPypi
+, nose
+, pythonOlder
+, pytestCheckHook
+, six
+}:
buildPythonPackage rec {
pname = "case";
version = "1.5.3";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "48432b01d91913451c3512c5b90e31b0f348f1074b166a3431085eb70d784fb1";
};
- propagatedBuildInputs = [ six nose unittest2 mock ];
+ propagatedBuildInputs = [
+ nose
+ six
+ ];
+
+ # No real unittests, only coverage
+ doCheck = false;
+
+ pythonImportsCheck = [
+ "case"
+ ];
meta = with lib; {
homepage = "https://github.com/celery/case";
- description = "unittests utilities";
+ description = "Utilities for unittests handling";
license = licenses.bsd3;
+ maintainers = with maintainers; [ ];
};
}
diff --git a/pkgs/development/python-modules/pecan/default.nix b/pkgs/development/python-modules/pecan/default.nix
index a488f15fbed8..0931cc2b28d8 100644
--- a/pkgs/development/python-modules/pecan/default.nix
+++ b/pkgs/development/python-modules/pecan/default.nix
@@ -1,46 +1,36 @@
{ lib
, fetchPypi
-, fetchpatch
, buildPythonPackage
-, isPy27
-# Python deps
, logutils
, Mako
-, six
, webtest
-# Test Inputs
+, pythonOlder
, pytestCheckHook
, genshi
, gunicorn
, jinja2
-, Kajiki
-, mock
+, six
, sqlalchemy
, virtualenv
}:
buildPythonPackage rec {
pname = "pecan";
- version = "1.4.0";
+ version = "1.4.1";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "4b2acd6802a04b59e306d0a6ccf37701d24376f4dc044bbbafba3afdf9d3389a";
+ sha256 = "sha256-LL0O7btXR8BM3xjEquTxxunZUPOvcK8lRLB09+16BIA=";
};
- patches = [
- (fetchpatch {
- name = "Support-SQLAlchemy-1.4x.patch";
- url = "https://github.com/pecan/pecan/commit/a520bd544c0b02a02dbf692b8d6e2f7a503ee6d4.patch";
- sha256 = "sha256-QCHRjwnpy8ndCvcuyE5Y65BybKYthJXDySUtmpJD8gY=";
- })
- ];
-
propagatedBuildInputs = [
logutils
Mako
- six
webtest
+ six
];
checkInputs = [
@@ -48,19 +38,23 @@ buildPythonPackage rec {
genshi
gunicorn
jinja2
- mock
sqlalchemy
virtualenv
- ] ++ lib.optionals isPy27 [ Kajiki ];
+ ];
pytestFlagsArray = [
- "--pyargs pecan "
+ "--pyargs pecan"
+ ];
+
+ pythonImportsCheck = [
+ "pecan"
];
meta = with lib; {
- description = "WSGI object-dispatching web framework, designed to be lean and fast";
- homepage = "https://www.pecanpy.org/";
changelog = "https://pecan.readthedocs.io/en/latest/changes.html";
+ description = "WSGI object-dispatching web framework";
+ homepage = "https://www.pecanpy.org/";
+ license = licenses.bsd3;
maintainers = with maintainers; [ applePrincess ];
};
}
diff --git a/pkgs/development/python-modules/pyro4/default.nix b/pkgs/development/python-modules/pyro4/default.nix
index 867e42485975..96b0e08a56d9 100644
--- a/pkgs/development/python-modules/pyro4/default.nix
+++ b/pkgs/development/python-modules/pyro4/default.nix
@@ -10,14 +10,16 @@
}:
buildPythonPackage rec {
- pname = "Pyro4";
- version = "4.81";
+ pname = "pyro4";
+ version = "4.82";
+ format = "setuptools";
disabled = isPy27;
src = fetchPypi {
- inherit pname version;
- sha256 = "e130da06478b813173b959f7013d134865e07fbf58cc5f1a2598f99479cdac5f";
+ pname = "Pyro4";
+ inherit version;
+ hash = "sha256-UR9bCATpLdd9wzrfnJR3h+P56cWpaxIWLwVXp8TOIfs=";
};
propagatedBuildInputs = [
@@ -30,13 +32,18 @@ buildPythonPackage rec {
msgpack
];
- checkInputs = [ pytestCheckHook ];
+ checkInputs = [
+ pytestCheckHook
+ ];
# add testsupport.py to PATH
preCheck = "PYTHONPATH=tests/PyroTests:$PYTHONPATH";
- # ignore network related tests, which fail in sandbox
- pytestFlagsArray = [ "--ignore=tests/PyroTests/test_naming.py" ];
+
+ pytestFlagsArray = [
+ # ignore network related tests, which fail in sandbox
+ "--ignore=tests/PyroTests/test_naming.py"
+ ];
disabledTests = [
"StartNSfunc"
@@ -47,6 +54,10 @@ buildPythonPackage rec {
# otherwise the tests hang the build
__darwinAllowLocalNetworking = true;
+ pythonImportsCheck = [
+ "Pyro4"
+ ];
+
meta = with lib; {
description = "Distributed object middleware for Python (RPC)";
homepage = "https://github.com/irmen/Pyro4";