openslide: Python portion into pythonPackages infrastructure

This commit is contained in:
Tyson Whitehead
2018-08-10 00:27:02 -04:00
parent 8f5981df31
commit d0a6a1bf3f
3 changed files with 6 additions and 5 deletions

View File

@@ -1,7 +1,8 @@
{ lib, fetchFromGitHub
, pythonPackages, openslide }:
{ lib, fetchFromGitHub, buildPythonPackage
, openslide
, pillow }:
pythonPackages.buildPythonPackage rec {
buildPythonPackage rec {
version = "1.1.1";
name = "openslide-python-${version}";
@@ -23,7 +24,7 @@ pythonPackages.buildPythonPackage rec {
];
propagatedBuildInputs = [
pythonPackages.pillow
pillow
];
meta = with lib; {