updating
This commit is contained in:
parent
6bdc450c30
commit
7f688ce99c
4 changed files with 71 additions and 72 deletions
|
|
@ -1,15 +1,23 @@
|
|||
{ lib, python310Packages, fetchPypi }:
|
||||
|
||||
{
|
||||
lib,
|
||||
python310Packages,
|
||||
fetchPypi,
|
||||
}:
|
||||
python310Packages.buildPythonPackage rec {
|
||||
pname = "pymatting";
|
||||
version = "1.1.13";
|
||||
format = "setuptools";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-LNt8S++s3e9Netwt6ONKJy3mOdYIrlwKCGE9+kJTgQE=";
|
||||
hash = "sha256-LNt8S++s3e9Netwt6ONKJy3mOdYIrlwKCGE9+kJTgQE=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with python310Packages; [
|
||||
setuptools
|
||||
poetry-core
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python310Packages; [
|
||||
numpy
|
||||
scipy
|
||||
|
|
@ -17,6 +25,9 @@ python310Packages.buildPythonPackage rec {
|
|||
numba
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
|
|
@ -24,5 +35,6 @@ python310Packages.buildPythonPackage rec {
|
|||
homepage = "https://github.com/pymatting/pymatting";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ "Cobray" ];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue