Files
nixpkgs/pkgs/development/python-modules/datauri/default.nix
Wolfgang Walther c283f32d29 treewide: remove unused with
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00

49 lines
940 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pydantic,
pytestCheckHook,
pythonOlder,
setuptools,
typing-extensions,
cached-property,
}:
buildPythonPackage rec {
pname = "datauri";
version = "3.0.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "fcurella";
repo = "python-datauri";
tag = "v${version}";
hash = "sha256-WrOQPUZ9vaLSR0hxIvCK8kBnARiOLh6qqWBw/h6XpaY=";
};
build-system = [ setuptools ];
dependencies = [
typing-extensions
cached-property
];
nativeCheckInputs = [
pydantic
pytestCheckHook
];
pythonImportsCheck = [ "datauri" ];
meta = with lib; {
description = "Module for Data URI manipulation";
homepage = "https://github.com/fcurella/python-datauri";
changelog = "https://github.com/fcurella/python-datauri/releases/tag/${src.tag}";
license = licenses.unlicense;
maintainers = [ ];
};
}