Merge staging-next into staging

This commit is contained in:
github-actions[bot]
2021-04-29 06:21:55 +00:00
committed by GitHub
38 changed files with 315 additions and 313 deletions
@@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "clevercsv";
version = "0.6.7";
version = "0.6.8";
format = "setuptools";
src = fetchFromGitHub {
owner = "alan-turing-institute";
repo = "CleverCSV";
rev = "v${version}";
sha256 = "0j3959bji48pkp0vnk7yls5l75ywjl77jdkvzs62n5mi5lky88p9";
sha256 = "0jpgyh65zqr76sz2s63zsjyb49dpg2xdmf72jvpicw923bdzhqvp";
};
propagatedBuildInputs = [
@@ -18,13 +18,13 @@
buildPythonPackage rec {
pname = "django-extensions";
version = "3.1.1";
version = "3.1.3";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
sha256 = "0ss5x3d21c3g8i1s79l4akazlf116yp4y50gx4vrk1dxh3jb29zj";
sha256 = "03mhikhh49z8bxajbjf1j790b9c9vl4zf4f86iwz7g0zrd7jqlvm";
};
LC_ALL = "en_US.UTF-8";
@@ -1,28 +1,29 @@
{ lib, stdenv
, buildPythonPackage
, fetchurl
, fetchFromGitHub
, vmprof
, pyqt4
, isPyPy
, pkgs
, scons
, chrpath
}:
let
# scons is needed but using it requires Python 2.7
# Therefore we create a separate env for it.
scons = pkgs.python27.withPackages(ps: [ pkgs.scons ]);
in buildPythonPackage rec {
version = "0.6.8.4";
buildPythonPackage rec {
version = "0.6.14.5";
pname = "Nuitka";
# Latest version is not yet on PyPi
src = fetchurl {
url = "https://github.com/kayhayen/Nuitka/archive/${version}.tar.gz";
sha256 = "0awhwksnmqmbciimqmd11wygp7bnq57khcg4n9r4ld53s147rmqm";
src = fetchFromGitHub {
owner = "kayhayen";
repo = "Nuitka";
rev = version;
sha256 = "08kcp22zdgp25kk4bp56z196mn6bdi3z4x0q2y9vyz0ywfzp9zap";
};
checkInputs = [ vmprof pyqt4 ];
nativeBuildInputs = [ scons ];
propagatedBuildInputs = [ chrpath ];
postPatch = ''
patchShebangs tests/run-tests
+15 -1
View File
@@ -1,4 +1,4 @@
{ lib, fetchPypi, buildPythonPackage, packaging, toml }:
{ lib, stdenv, fetchPypi, buildPythonPackage, packaging, toml }:
buildPythonPackage rec {
pname = "sip";
@@ -17,6 +17,20 @@ buildPythonPackage rec {
pythonImportsCheck = [ "sipbuild" ];
# FIXME: Why isn't this detected automatically?
# Needs to be specified in pyproject.toml, e.g.:
# [tool.sip.bindings.MODULE]
# tags = [PLATFORM_TAG]
platform_tag =
if stdenv.targetPlatform.isLinux then
"WS_X11"
else if stdenv.targetPlatform.isDarwin then
"WS_MACX"
else if stdenv.targetPlatform.isWindows then
"WS_WIN"
else
throw "unsupported platform";
meta = with lib; {
description = "Creates C++ bindings for Python modules";
homepage = "http://www.riverbankcomputing.co.uk/";
@@ -7,13 +7,13 @@
buildPythonPackage rec {
pname = "twitterapi";
version = "2.7.2";
version = "2.7.3";
src = fetchFromGitHub {
owner = "geduldig";
repo = "TwitterAPI";
rev = "v${version}";
sha256 = "sha256-kSL+zAWn/6itBu4T1OcIbg4k5Asatgz/dqzbnlcsqkg=";
sha256 = "sha256-82TOVrC7wX7E9lKsx3iGxaEEjHSzf5uZwePBvAw3hDk=";
};
propagatedBuildInputs = [