nur update

This commit is contained in:
Daniel Olsen
2021-03-13 01:03:17 +01:00
parent 2376926b98
commit 5ebd57d6bc
4 changed files with 117 additions and 4 deletions

View File

@@ -0,0 +1,21 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "pylzma";
version = "0.5.0";
src = fetchPypi {
inherit pname version;
sha256 = "074anvhyjgsv2iby2ql1ixfvjgmhnvcwjbdz8gk70xzkzcm1fx5q";
};
doCheck = false;
meta = with lib; {
homepage = "https://github.com/opencv/opencv-python";
description = "Unofficial pre-built CPU-only OpenCV packages for Python";
license = licenses.mit;
};
}