forked from mirrors/nixpkgs
Merge pull request #177008 from loicreynier/feat-init-pythonpackages-piccolo-theme
pythonPackages.piccolo-theme: init at 0.11.1
This commit is contained in:
commit
1a04a478fa
26
pkgs/development/python-modules/piccolo-theme/default.nix
Normal file
26
pkgs/development/python-modules/piccolo-theme/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, sphinx }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "piccolo-theme";
|
||||
version = "0.12.0";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "piccolo_theme";
|
||||
inherit version;
|
||||
sha256 = "sha256-o6uaqAo/Nb28doByq40XakKJpA4o6/Z/PzMhmb058FE=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
sphinx
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "piccolo_theme" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Clean and modern Sphinx theme";
|
||||
homepage = "https://piccolo-theme.readthedocs.io";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ loicreynier ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
|
@ -6760,6 +6760,8 @@ in {
|
|||
|
||||
picos = callPackage ../development/python-modules/picos { };
|
||||
|
||||
piccolo-theme = callPackage ../development/python-modules/piccolo-theme { };
|
||||
|
||||
pid = callPackage ../development/python-modules/pid { };
|
||||
|
||||
piep = callPackage ../development/python-modules/piep { };
|
||||
|
|
Loading…
Reference in a new issue