Revert "Merge #101508: libraw: 0.20.0 -> 0.20.2"

I'm sorry; I didn't notice it contained staging commits.

This reverts commit 17f5305b6c, reversing
changes made to a8a018ddc0.
This commit is contained in:
Vladimír Čunát
2020-10-25 09:38:02 +01:00
parent 38f85a5bba
commit c778945806
93 changed files with 2696 additions and 783 deletions

View File

@@ -6,11 +6,11 @@
buildPythonPackage rec {
pname = "arrow";
version = "0.17.0";
version = "0.15.8";
src = fetchPypi {
inherit pname version;
sha256 = "ff08d10cda1d36c68657d6ad20d74fbea493d980f8b2d45344e00d6ed2bf6ed4";
sha256 = "edc31dc051db12c95da9bac0271cd1027b8e36912daf6d4580af53b23e62721a";
};
propagatedBuildInputs = [ python-dateutil ]

View File

@@ -1,13 +1,4 @@
{ lib
, fetchFromGitHub
, meson
, ninja
, buildPythonPackage
, pytestCheckHook
, pkg-config
, cairo
, isPy3k
}:
{ lib, fetchFromGitHub, meson, ninja, buildPythonPackage, pytest, pkgconfig, cairo, xlibsWrapper, isPy3k }:
buildPythonPackage rec {
pname = "pycairo";
@@ -25,25 +16,22 @@ buildPythonPackage rec {
nativeBuildInputs = [
meson
ninja
pkg-config
pkgconfig
];
buildInputs = [
cairo
xlibsWrapper
];
checkInputs = [
pytestCheckHook
];
checkInputs = [ pytest ];
mesonFlags = [
"-Dpython=${if isPy3k then "python3" else "python"}"
];
mesonFlags = [ "-Dpython=${if isPy3k then "python3" else "python"}" ];
meta = with lib; {
description = "Python 2/3 bindings for cairo";
homepage = "https://pycairo.readthedocs.io/";
license = with licenses; [ lgpl21Only mpl11 ];
license = with licenses; [ lgpl2 mpl11 ];
platforms = lib.platforms.linux ++ lib.platforms.darwin;
};
}