Merge pull request #320527 from GaetanLepage/color-operations
python311Packages.color-operations: 0.1.3 -> 0.1.4
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user