python311Packages.color-operations: 0.1.3 -> 0.1.4

Diff: https://github.com/vincentsarago/color-operations/compare/refs/tags/0.1.3...0.1.4
This commit is contained in:
Gaetan Lepage
2024-06-18 16:23:23 +02:00
parent 982a93db3d
commit 235c5134de
@@ -1,35 +1,42 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
fetchFromGitHub,
colormath,
# build-system
cython,
oldest-supported-numpy,
setuptools,
# dependencies
numpy,
# checks
colormath,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "color-operations";
version = "0.1.3";
version = "0.1.4";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "vincentsarago";
repo = "color-operations";
rev = version;
hash = "sha256-KsrgilcNK2ufPKrhtGdf8mdlFzhsHB2jHN+WDlZqabc=";
rev = "refs/tags/${version}";
hash = "sha256-qqOTmVYD3VfjeVJtYvDQw+cxjcTsmqTYQNL1qMX+fL4=";
};
nativeBuildInputs = [
build-system = [
cython
oldest-supported-numpy
setuptools
];
propagatedBuildInputs = [ oldest-supported-numpy ];
dependencies = [ numpy ];
nativeCheckInputs = [
colormath