mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
pythonPackages.willow: 0.2.1 -> 0.2.2, disable tests
Test data is not included.
This commit is contained in:
parent
a086b364da
commit
f1c24d4866
1 changed files with 7 additions and 3 deletions
|
@ -24174,15 +24174,19 @@ in modules // {
|
|||
|
||||
willow = buildPythonPackage rec {
|
||||
name = "willow-${version}";
|
||||
version = "0.2.1";
|
||||
version = "0.2.2";
|
||||
disabled = pythonOlder "2.7";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/W/Willow/Willow-${version}.tar.gz";
|
||||
sha256 = "0mgdpq7cvyvgk0n8ibkym3nsw1xg89kbismsj2y186ldcyxfajwa";
|
||||
sha256 = "111c82fbfcda2710ce6201b0b7e0cfa1ff3c4f2f0dc788cc8dfc8db933c39c73";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ six ];
|
||||
propagatedBuildInputs = with self; [ six pillow ];
|
||||
|
||||
# Test data is not included
|
||||
# https://github.com/torchbox/Willow/issues/34
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "A Python image library that sits on top of Pillow, Wand and OpenCV";
|
||||
|
|
Loading…
Reference in a new issue