Unverified Commit ddc81a56 authored by provokateurin's avatar provokateurin
Browse files

python3Packages.dict2css: init at 0.3.0.post1

parent de00cd00
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
{
  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 = [ ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -3745,6 +3745,8 @@ self: super: with self; {
  dicomweb-client = callPackage ../development/python-modules/dicomweb-client { };
  dict2css = callPackage ../development/python-modules/dict2css { };
  dict2xml = callPackage ../development/python-modules/dict2xml { };
  dictdiffer = callPackage ../development/python-modules/dictdiffer { };