nixpkgs/pkgs/development/python-modules/ochre/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

39 lines
786 B
Nix

{
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 = "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 ];
};
}