python310Packages.ochre: init at 0.4.0

https://github.com/getcuia/ochre
This commit is contained in:
figsoda 2023-08-16 15:57:05 -04:00
parent 4c0037598b
commit 4eed745343
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, hypothesis
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "ochre";
version = "0.4.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "getcuia";
repo = "ochre";
rev = "v${version}";
hash = "sha256-U6qycLnldwNze3XMAn6DS3XGX4RaCZgW0pH/y/FEAkk=";
};
nativeBuildInputs = [
poetry-core
];
nativeCheckInputs = [
hypothesis
pytestCheckHook
];
pythonImportsCheck = [ "ochre" ];
meta = with lib; {
description = "A down-to-earth approach to colors";
homepage = "https://github.com/getcuia/ochre";
changelog = "https://github.com/getcuia/ochre/releases/tag/${src.rev}";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}

View file

@ -7289,6 +7289,8 @@ self: super: with self; {
oca-port = callPackage ../development/python-modules/oca-port { };
ochre = callPackage ../development/python-modules/ochre { };
oci = callPackage ../development/python-modules/oci { };
ocifs = callPackage ../development/python-modules/ocifs { };