blob: 17689e20acf0dcbeb055ced57608734a918d07e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
buildPythonPackage,
fetchPypi,
whey,
cssutils,
lib,
}:
buildPythonPackage rec {
pname = "dict2css";
version = "0.3.0.post1";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "dict2css";
hash = "sha256-icVEwhxMp0csP/+50309km9gYymv23Udwd5npBG3Bxk=";
};
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 = [ ];
};
}
|