Files
nixpkgs/pkgs/development/python-modules/dict2css/default.nix
Fabian Affolter 6a8d5fb088 python3Packages.dict2css: 0.3.0.post1 -> 0.6.0
This commit was automatically generated using update-python-libraries.
2026-08-25 01:24:18 +02:00

32 lines
624 B
Nix

{
buildPythonPackage,
fetchPypi,
whey,
cssutils,
lib,
}:
buildPythonPackage rec {
pname = "dict2css";
version = "0.6.0";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "dict2css";
hash = "sha256-FD5Vy3HJiojHnyxB4IpfpNh1ZZJ1dW95TjHM1pk2zog=";
};
build-system = [ whey ];
dependencies = [ cssutils ];
pythonImportsCheck = [ "dict2css" ];
meta = {
description = "μ-library for constructing cascading style sheets from Python dictionaries";
homepage = "https://github.com/sphinx-toolbox/dict2css";
license = lib.licenses.mit;
maintainers = [ ];
};
}