mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
octoprint/costestimation: fix homepage & fmt
This commit is contained in:
parent
aa298de800
commit
50840cc6d2
1 changed files with 6 additions and 4 deletions
|
@ -2,15 +2,17 @@
|
|||
|
||||
with pkgs;
|
||||
|
||||
self: super: let
|
||||
self: super:
|
||||
let
|
||||
buildPlugin = args: self.buildPythonPackage (args // {
|
||||
pname = "OctoPrintPlugin-${args.pname}";
|
||||
inherit (args) version;
|
||||
propagatedBuildInputs = (args.propagatedBuildInputs or []) ++ [ super.octoprint ];
|
||||
propagatedBuildInputs = (args.propagatedBuildInputs or [ ]) ++ [ super.octoprint ];
|
||||
# none of the following have tests
|
||||
doCheck = false;
|
||||
});
|
||||
in {
|
||||
in
|
||||
{
|
||||
inherit buildPlugin;
|
||||
|
||||
m86motorsoff = buildPlugin rec {
|
||||
|
@ -84,7 +86,7 @@ in {
|
|||
|
||||
meta = with lib; {
|
||||
description = "Plugin to display the estimated print cost for the loaded model.";
|
||||
homepage = "https://github.com/malnvenshorn/OctoPrint-CostEstimation";
|
||||
homepage = "https://github.com/OllisGit/OctoPrint-CostEstimation";
|
||||
license = licenses.agpl3Only;
|
||||
maintainers = with maintainers; [ stunkymonkey ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue