Merge staging-next into staging

This commit is contained in:
github-actions[bot]
2021-04-25 18:14:18 +00:00
committed by GitHub
39 changed files with 1345 additions and 188 deletions
@@ -3,14 +3,14 @@
buildPythonPackage rec {
pname = "libarcus";
version = "4.8.0";
version = "4.9.0";
format = "other";
src = fetchFromGitHub {
owner = "Ultimaker";
repo = "libArcus";
rev = version;
sha256 = "1dvz1rkvm4309yzvj7vy49v1vskr5yfq4nzqdiydp1jb7zpvhqqm";
sha256 = "0wq72nf680bwxijjajb4piw563rnvflshmw96kqln4lsny7ydjj2";
};
disabled = pythonOlder "3.4.0";
@@ -2,14 +2,14 @@
buildPythonPackage rec {
pname = "libsavitar";
version = "4.8.0";
version = "4.9.0";
format = "other";
src = fetchFromGitHub {
owner = "Ultimaker";
repo = "libSavitar";
rev = version;
sha256 = "1mxkvnhn8k1a86jlnjnlpf0b8dvrcg3n7pslf60s13cgb7w3sfzh";
sha256 = "0434cb19v9phc9xicbmgpbig18ivplcpqhnsjgca4p8n8c715k9h";
};
postPatch = ''
@@ -0,0 +1,39 @@
{
lib
, buildPythonPackage
, fetchPypi
, jinja2
, kubernetes
, ruamel-yaml
, six
, python-string-utils
}:
buildPythonPackage rec {
pname = "openshift";
version = "0.12.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-aggRnD4goiZJPp4cngp8AIrJC/V46378cwUSfq8Xml4=";
};
propagatedBuildInputs = [
jinja2
kubernetes
python-string-utils
ruamel-yaml
six
];
# tries to connect to the network
doCheck = false;
pythonImportsCheck = ["openshift"];
meta = with lib; {
description = "Python client for the OpenShift API";
homepage = "https://github.com/openshift/openshift-restclient-python";
license = licenses.asl20;
maintainers = with maintainers; [ teto ];
};
}
@@ -0,0 +1,27 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "python-string-utils";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-3PkGCwPwdkfApgNAjciwP4B/O1SgXG4Z6xRGAlb6wMs=";
};
pythonImportsCheck = ["string_utils"];
# tests are not available in pypi tarball
doCheck = false;
meta = with lib; {
description = "A handy Python library to validate, manipulate and generate strings.";
homepage = "https://github.com/daveoncode/python-string-utils";
license = licenses.mit;
maintainers = with maintainers; [ teto ];
};
}
@@ -2,7 +2,7 @@
, pyqt5, numpy, scipy, shapely, libarcus, cryptography, doxygen, gettext, pythonOlder }:
buildPythonPackage rec {
version = "4.7.1";
version = "4.9.0";
pname = "uranium";
format = "other";
@@ -10,7 +10,7 @@ buildPythonPackage rec {
owner = "Ultimaker";
repo = "Uranium";
rev = version;
sha256 = "1h5d3scy3cnbyhh0pbavflpqklhn2lbp7hl193rc5gx8yzr3mqbh";
sha256 = "0bqrc4g4pd7b209swlv06bm5sx7df96h9kjpqpra4mfz469km4nn";
};
disabled = pythonOlder "3.5.0";